Spread for ASP.NET 7.0 Product Documentation
IsGroup Method
See Also  Example Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread.Model Namespace > GroupDataModel Class : IsGroup Method


row
Row index

Glossary Item Box

Determines whether the specified row is a group header (also called group node).

Syntax

Visual Basic (Declaration) 
Public Function IsGroup( _
   ByVal row As Integer _
) As Boolean
Visual Basic (Usage)Copy Code
Dim instance As GroupDataModel
Dim row As Integer
Dim value As Boolean
 
value = instance.IsGroup(row)
C# 
public bool IsGroup( 
   int row
)

Parameters

row
Row index

Return Value

Boolean: true if specified row is in the group; false otherwise

Example

This example returns the name of the column from the specified index.
C#Copy Code
protected void Button1_Click(object sender, EventArgs e)
{
FarPoint.Web.Spread.Model.GroupDataModel gm;
if ((FpSpread1.ActiveSheetView.DataModel) is FarPoint.Web.Spread.Model.GroupDataModel)
{
gm = (FarPoint.Web.Spread.Model.GroupDataModel)FpSpread1.ActiveSheetView.DataModel;
if ((gm.TargetModel) is FarPoint.Web.Spread.Model.IRangeSupport)
{
FarPoint.Web.Spread.Model.IRangeSupport im = (FarPoint.Web.Spread.Model.IRangeSupport)gm.TargetModel;
bool b;
b = gm.IsGroup(0);
string s = gm.GetColumnName(2);
String msg = s;
Response.Write("alert('" + msg + "')");
}
}
}
Visual BasicCopy Code
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim gm As FarPoint.Web.Spread.Model.GroupDataModel
If TypeOf (FpSpread1.ActiveSheetView.DataModel) Is FarPoint.Web.Spread.Model.GroupDataModel Then
gm = FpSpread1.ActiveSheetView.DataModel
If TypeOf (gm.TargetModel) Is FarPoint.Web.Spread.Model.IRangeSupport Then
Dim im As FarPoint.Web.Spread.Model.IRangeSupport = gm.TargetModel
Dim b As Boolean
b = gm.IsGroup(0)
Dim s As String = gm.GetColumnName(2)
Dim msg As String = s
Response.Write("alert('" & msg & "')")
End If
End If
End Sub

Requirements

Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.