Spread Windows Forms 10.0 Product Documentation
Start Property (RangeGroupInfo)
Example 


Gets the start index of this outline (range group).
Syntax
'Declaration
 
Public ReadOnly Property Start As Integer
'Usage
 
Dim instance As RangeGroupInfo
Dim value As Integer
 
value = instance.Start
public int Start {get;}
Example
This example returns the start of the range group.
private void Button1_Click(object sender, System.EventArgs e) 
{
FarPoint.Win.Spread.RangeGroupInfo[] rgi = fpSpread1.ActiveSheet.Columns.GetRangeGroupInfo(1);
MessageBox.Show(rgi[0].Start.ToString());
}
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).Start.ToString())
End Sub
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

RangeGroupInfo Class
RangeGroupInfo Members

 

 


Copyright © GrapeCity, inc. All rights reserved.