Version

Changing Default Style of lines connecting Rows or child bands

The RowConnectorStyle RowConnectorStyle property is used to determine the type of line that will be used to connect sibling rows, child rows, and also child bands to their parent band. Using the RowConnectorStyle and RowConnectorColor properties the appearance of row connectors can be modified.

In Visual Basic:

Me.ultraGrid1.DisplayLayout.RowConnectorStyle = RowConnectorStyle.Raised
Me.ultraGrid1.DisplayLayout.RowConnectorColor = Color.HotPink

In C#:

this.ultraGrid1.DisplayLayout.RowConnectorStyle = RowConnectorStyle.Raised;
this.ultraGrid1.DisplayLayout.RowConnectorColor = Color.HotPink;

WinGrid with Raised, Pink colored Row connectors:

WinGrid Changing Default Style of Lines connecting rows or child bands to their parent bands 01.png

In Visual Basic:

Me.ultraGrid1.DisplayLayout.RowConnectorStyle = RowConnectorStyle.None

In C#:

this.ultraGrid1.DisplayLayout.RowConnectorStyle = RowConnectorStyle.None;

WinGrid without Row connectors:

WinGrid Changing Default Style of Lines connecting rows or child bands to their parent bands 02.png