Spread for ASP.NET 11 Product Documentation
SortInfo Property (GroupDataModel)
Example 


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread.Model Namespace > GroupDataModel Class : SortInfo Property
Gets the sorting information for the group.
Syntax
'Declaration
 
Public ReadOnly Property SortInfo As SortInfo()
'Usage
 
Dim instance As GroupDataModel
Dim value() As SortInfo
 
value = instance.SortInfo
public SortInfo[] SortInfo {get;}

Property Value

SortInfo object containing the sorting information
Example
This example groups the data model.
private void button1_Click(object sender, EventArgs e)
{
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;

String msg = gm.SortInfo.GetValue(0).ToString();
Response.Write("alert('" + msg + "')");
}
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
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, System.Collections.Comparer.Default)
FpSpread1.ActiveSheetView.DataModel = gm
String msg = gm.SortInfo.GetValue(0).ToString()
Response.Write("alert('" & msg & "')")
End Sub
See Also

Reference

GroupDataModel Class
GroupDataModel Members