Version

Insert(Int32,UltraGridColumn,Boolean) Method

Inserts the column into the sorted columns collection.
Syntax
'Declaration
 
Public Overloads Sub Insert( _
   ByVal insertIndex As Integer, _
   ByVal column As UltraGridColumn, _
   ByVal groupBy As Boolean _
) 
public void Insert( 
   int insertIndex,
   UltraGridColumn column,
   bool groupBy
)

Parameters

insertIndex
The index into which the column will be inserted. Index must be less or equal to the index of first non-group by column in the collection. (There can't be a group by column surrounded by non-group by columns in the sorted collection).
column
The column to insert.
groupBy
True to specify that the column should be grouped by, as well as sorted.
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