GrapeCity.Win.MultiRow.v80 アセンブリ > GrapeCity.Win.MultiRow 名前空間 : SortItem クラス |
GcMutliRowコントロールのGcMultiRow.Sortメソッドでは、このクラスを使用して一連のセルを並べ替えることができます。ユーザーはComparerプロパティをカスタマイズすることで、並べ替えをカスタマイズできます。
CellIndexプロパティとCellNameプロパティがGcMultiRowコントロールに対してどちらも有効な場合は、CellIndexプロパティが優先されます。
void SortByCodeMultiCells() { SortItem sortItem1 = new SortItem(0, SortOrder.Ascending); SortItem sortItem2 = new SortItem(1, SortOrder.Descending); SortItem[] sortItems = new SortItem[] { sortItem1, sortItem2 }; // In one sort operator, sort two cells in all rows by using SortItem. this.gcMultiRow1.Sort(sortItems); }
Private Sub SortByCodeMultiCells() Dim sortItem1 As New SortItem(0, SortOrder.Ascending) Dim sortItem2 As New SortItem(1, SortOrder.Descending) Dim sortItems As SortItem() = New SortItem() {sortItem1, sortItem2} ' In one sort operator, sort two cells in all rows by using SortItem. Me.gcMultiRow1.Sort(sortItems) End Sub
System.Object
GrapeCity.Win.MultiRow.SortItem