GrapeCity.Win.MultiRow Namespace > GcMultiRow Class > Sort Method : Sort(Int32,SortOrder,IComparer) Method |
Public Overloads Sub Sort( _ ByVal cellIndex As Integer, _ ByVal sortOrder As SortOrder, _ ByVal comparer As IComparer _ )
Dim instance As GcMultiRow Dim cellIndex As Integer Dim sortOrder As SortOrder Dim comparer As IComparer instance.Sort(cellIndex, sortOrder, comparer)
Exception | Description |
---|---|
System.ArgumentOutOfRangeException | The cellIndex is less than 0 or greater than the number of Cells in the Row minus 1. |
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 allows advanced customization of the sorting feature in the GcMultiRow class. In order to implement a highly customized sorting operation, write an event handler for the CellMouseClick event for ColumnHeaderCell and call this method with an instance of a class that implements the System.Collections.IComparer interface as a parameter. 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 SortByCodeCustomCompare() { this.gcMultiRow1.Sort(0, SortOrder.Ascending, new StringNumberCompare()); } class StringNumberCompare : System.Collections.IComparer { public int Compare(object x, object y) { if (x is string && y is string) { int a; int b; if (int.TryParse(x as string, out a) && int.TryParse(y as string, out b)) { return a.CompareTo(b); } } return 0; } }
Private Sub SortByCodeCustomCompare() Me.gcMultiRow1.Sort(0, SortOrder.Ascending, New StringNumberCompare()) End Sub Private Class StringNumberCompare Implements System.Collections.IComparer Public Function Compare(ByVal x As Object, ByVal y As Object) As Integer Implements IComparer.Compare If TypeOf x Is String AndAlso TypeOf y Is String Then Dim a As Integer Dim b As Integer If Integer.TryParse(TryCast(x, String), a) AndAlso Integer.TryParse(TryCast(y, String), b) Then Return a.CompareTo(b) End If End If Return 0 End Function End Class
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