Spread Windows Forms 6.0 Product Documentation
End Property
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > RangeGroupInfo Class : End Property


Glossary Item Box

Gets the end index of this outline (range group).

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property End As Integer
Visual Basic (Usage)Copy Code
Dim instance As RangeGroupInfo
Dim value As Integer
 
value = instance.End
C# 
public int End {get;}

Example

This example returns the end of the range group.
C#Copy Code
private void Button1_Click(object sender, System.EventArgs e) 
{
FarPoint.Win.Spread.RangeGroupInfo[] rgi = fpSpread1.ActiveSheet.Columns.GetRangeGroupInfo(1);
MessageBox.Show(rgi[0].End.ToString());
}
Visual BasicCopy Code
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim rgi() As FarPoint.Win.Spread.RangeGroupInfo = FpSpread1.ActiveSheet.Columns.GetRangeGroupInfo(1)
MsgBox(rgi(0).End.ToString())
End Sub

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

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