バージョン

GetExtent(BandOrigin) メソッド

バンドの絶対幅を返します。
シンタックス
'宣言
 
Public Overloads Function GetExtent( _
   ByVal area As BandOrigin _
) As Integer
public int GetExtent( 
   BandOrigin area
)

パラメータ

area
の範囲を取得する領域を指定します。
解説

GetExtentメソッドでグリッドのコンテナーのスケール モードを使用して、バンドの合計幅を返すことができます。このメソッドは、バンドが表示される量、ColScrollRegionのサイズ、またはシステムで使用できる画面領域のサイズを考慮しません。指定する位置から始まり、バンド全体を表示するために必要となる合計幅を計算するだけです。

使用例
Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid
Imports System.Diagnostics

   Private Sub Button112_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button112.Click

       Dim bands As BandsCollection = Me.UltraGrid1.DisplayLayout.Bands

       ' Loop through all the bands.
       Dim band As UltraGridBand
       For Each band In bands
           ' Get the origin and the extent.
           Dim origin As Integer = band.GetOrigin(BandOrigin.PreRowArea)
           Dim extent As Integer = band.GetExtent(BandOrigin.PreRowArea)

           ' Write out the origin and the extent.
           Debug.WriteLine("bands(" & band.Index & ") Origin = " & origin & ", Extent = " & extent)
       Next

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

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

	BandsCollection bands = this.ultraGrid1.DisplayLayout.Bands;

	// Loop through all the bands.
	foreach ( UltraGridBand band in bands )
	{
		// Get the origin and the extent.
		int origin = band.GetOrigin( BandOrigin.PreRowArea );
		int extent = band.GetExtent( BandOrigin.PreRowArea );				
		
		// Write out the origin and the extent.
		Debug.WriteLine( "bands[" + band.Index + "] Origin = " + origin + ", Extent = " + extent );
	}

}
参照