Spread for ASP.NET 11 Product Documentation
Ascending Property (Group)
Example 


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread.Model Namespace > Group Class : Ascending Property
Gets whether the rows in the group are displayed in ascending order.
Syntax
'Declaration
 
Public ReadOnly Property Ascending As Boolean
'Usage
 
Dim instance As Group
Dim value As Boolean
 
value = instance.Ascending
public bool Ascending {get;}

Property Value

Boolean: true if order is ascending; false if order is descending
Example
This example returns whether the group is ascending.
FarPoint.Web.Spread.Model.GroupDataModel gm = new FarPoint.Web.Spread.Model.GroupDataModel(FpSpread1.ActiveSheetView.DataModel);
FarPoint.Web.Spread.SortInfo[] sort = new FarPoint.Web.Spread.SortInfo[1];
sort[0] = new FarPoint.Web.Spread.SortInfo(0, true);
gm.Group(sort, System.Collections.Comparer.Default);
FpSpread1.ActiveSheetView.DataModel = gm;

FarPoint.Web.Spread.Model.Group dg = new FarPoint.Web.Spread.Model.Group(gm, (FarPoint.Web.Spread.Model.Group)gm.Groups[0], 0, true);
bool b = dg.Ascending;
String msg = b.ToString();
Response.Write("alert('" + msg + "')");
Dim gm As New FarPoint.Web.Spread.Model.GroupDataModel(FpSpread1.ActiveSheetView.DataModel)
Dim sort(0) As FarPoint.Web.Spread.SortInfo
sort(0) = New FarPoint.Web.Spread.SortInfo(0, True)
gm.Group(sort)
FpSpread1.ActiveSheetView.DataModel = gm

Dim dg As New FarPoint.Web.Spread.Model.Group(gm, gm.Groups(0), 0, True)
Dim b As Boolean = dg.Ascending
Dim msg As String = b.ToString()
Response.Write("alert('" & msg & "')")
See Also

Reference

Group Class
Group Members