FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > SheetView Class > SortRows Method : SortRows(Int32,Boolean,Boolean) Method |
'Declaration Public Overloads Function SortRows( _ ByVal keyColumn As Integer, _ ByVal ascending As Boolean, _ ByVal showIndicator As Boolean _ ) As Boolean
This is the simplest of the methods to sort rows. You need only specify the following:
All the rows in the sheet are sorted.
FarPoint.Web.Spread.SheetView sv; FarPoint.Web.Spread.SortInfo[] s = new FarPoint.Web.Spread.SortInfo[1]; s[0] = new FarPoint.Web.Spread.SortInfo(0, false); sv = FpSpread1.ActiveSheetView; sv.SortRows(0, False, True);
Dim sv As FarPoint.Web.Spread.SheetView Dim s(1) As FarPoint.Web.Spread.SortInfo s(0) = New FarPoint.Web.Spread.SortInfo(0, False) sv = FpSpread1.ActiveSheetView sv.SortRows(0, False, True)
Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional