Version

GetFirstVisibleCol(ColScrollRegion,Boolean,Boolean) Method

Returns the first visible column in the passed in column scrolling region.
Syntax
'Declaration
 
Public Overloads Function GetFirstVisibleCol( _
   ByVal csr As ColScrollRegion, _
   ByVal includeNonActivateable As Boolean, _
   ByVal useTabOrderedColumns As Boolean _
) As UltraGridColumn
public UltraGridColumn GetFirstVisibleCol( 
   ColScrollRegion csr,
   bool includeNonActivateable,
   bool useTabOrderedColumns
)

Parameters

csr
An existing column scrolling region.
includeNonActivateable
Specifies whether to include columns that are not activateable.
useTabOrderedColumns
Specifies whether to return the columns according to their TabIndex settings or their visible order.

Return Value

The first visible column in the passed in column scrolling region.
Remarks

Use this method to determine which is the first (leftmost) visible column in a specific column scrolling region.

Requirements

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

See Also