GrapeCity.Win.MultiRow Namespace > GcMultiRow Class > Sort Method : Sort(String,SortOrder) Method |
Dim instance As GcMultiRow Dim cellName As String Dim sortOrder As SortOrder instance.Sort(cellName, sortOrder)
Exception | Description |
---|---|
System.ArgumentNullException | The cellName is a null reference (Nothing in Visual Basic) or String.Empty. |
System.ArgumentException | The cellName does not match the name of any Cell in the Row. |
System.ComponentModel.InvalidEnumArgumentException | The sortOrder is an invalid value for the System.Windows.Forms.SortOrder enumeration. |
System.InvalidOperationException | This method cannot be accessed when the Template is a null reference (Nothing in Visual Basic). -or- VirtualMode is true and DataSource is a null reference (Nothing in Visual Basic). |
This method sorts the contents of the GcMultiRow control by comparing values in the specified cells with the same cell index. By default, the sort operation uses the System.Collections.Comparer.Compare(System.Object,System.Object) method to compare pairs of cells by using the Value property.
You can write an event handler for the CellMouseClick event for ColumnHeaderCell and call this method. In this case, you typically set the SortMode property to SortMode.Programmatic to disable automatic sorting and to leave room for a sorting glyph. When sorting by cells set to programmatic sort mode, you must display the sorting glyph yourself by setting the SortGlyphDirection property.
If the AllowUserToAddRows property value is true, the last row is always the last row. In this case, the sorting operator does not effect the last row (uncommitted new row).
void SortByCode() { // Sort first cell of all rows. this.gcMultiRow1.Sort(test, SortOrder.Ascending); }
Private Sub SortByCode() ' Sort first cell of all rows. Me.gcMultiRow1.Sort(test,SortOrder.Ascending) End Sub
Target Platforms: 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