バージョン

Indentation プロパティ

このバンドのインデントの量を決定する値を返すまたは設定します。
シンタックス
'宣言
 
Public Property Indentation As Integer
public int Indentation {get; set;}
解説
Indentation プロパティを使用して、コントロールによって実行されるデフォルトのインデントを越えてバンドにどの位のインデントを指定することができます。このプロパティのデフォルト値は-1で、グリッドのデフォルトのインデント量が使用されることを示します。
使用例
Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid

  Private Sub Button142_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button142.Click

      Me.UltraGrid1.DisplayLayout.Bands(0).Indentation = 40
      Me.UltraGrid1.DisplayLayout.Bands(1).Indentation = 40

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

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

	this.ultraGrid1.DisplayLayout.Bands[0].Indentation = 40;
	this.ultraGrid1.DisplayLayout.Bands[1].Indentation = 40;

}
参照