'Declaration Public Enum BandOrigin Inherits System.Enum
public enum BandOrigin : System.Enum
Member | Description |
---|---|
PreRowArea | Pre-Row Area. The left edge of the pre-row area is used to determine the origin. |
RowCellArea | Cell Area. The left edge of the leftmost cell(s) is used to determine the origin. |
RowSelector | Row Selectors. The left edge of the record selectors is used to determine the origin. |
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 ); } }
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2