バージョン

RowConnectorStyle 列挙体

兄弟行の接続スタイルを指定する列挙体。
シンタックス
'宣言
 
Public Enum RowConnectorStyle 
   Inherits System.Enum
public enum RowConnectorStyle : System.Enum 
メンバ
メンバ解説
Dashedコネクタラインを破線で描画します。
Defaultデフォルトのスタイル。
Dottedコネクタラインを点線で描画します。
Insetコネクタラインをくぼみで描画します。
Noneコネクタラインなし。
Raisedコネクタラインを浮き彫りで描画します。
Solidコネクタラインを実線で描画します。
使用例
Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid

  Private Sub Button22_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button22.Click

      ' Set RowConnectorStyle and RowConnectorColor to change the appearance of row
      ' connectors. Row connectors are the lines that connect sibling rows and child
      ' rows to parent rows.
      Me.ultraGrid1.DisplayLayout.RowConnectorStyle = RowConnectorStyle.Solid
      Me.ultraGrid1.DisplayLayout.RowConnectorColor = Color.DarkRed

      ' You can set the row appearance and other appearances using the Override object
      ' off the layout.
      Me.ultraGrid1.DisplayLayout.Override.RowAppearance.BackColor = Color.LightYellow

  End Sub
using Infragistics.Shared;
using Infragistics.Win;
using Infragistics.Win.UltraWinGrid;
using System.Diagnostics;

private void button22_Click(object sender, System.EventArgs e)
{	

	// Set RowConnectorStyle and RowConnectorColor to change the appearance of row
	// connectors. Row connectors are the lines that connect sibling rows and child
	// rows to parent rows.
	this.ultraGrid1.DisplayLayout.RowConnectorStyle = RowConnectorStyle.Solid;
	this.ultraGrid1.DisplayLayout.RowConnectorColor = Color.DarkRed;

	// You can set the row appearance and other appearances using the Override object
	// off the layout.
	this.ultraGrid1.DisplayLayout.Override.RowAppearance.BackColor = Color.LightYellow;

}
参照