Spread for ASP.NET 11 Product Documentation
GetTabText Method
Example 


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > FpSpread Class : GetTabText Method
Index of the specified sheet
Gets the text of the sheet name tab at the specified sheet in the Spread component.
Syntax
'Declaration
 
Public Function GetTabText( _
   ByVal index As Integer _
) As String
'Usage
 
Dim instance As FpSpread
Dim index As Integer
Dim value As String
 
value = instance.GetTabText(index)
public string GetTabText( 
   int index
)

Parameters

index
Index of the specified sheet

Return Value

String containing the text to be displayed in the sheet name tab
Remarks

The tab text is displayed in the sheet name tab associated with the specified sheet (SheetView object).

The sheet index is zero-based (the first sheet has an index of 0).

Example
This example creates three sheets for the spreadsheet, names them and returns the name of the second sheet to a text box.
FpSpread1.Sheets.Count=3;
FpSpread1.Sheets[0].SheetName="One";
FpSpread1.Sheets[1].SheetName="Two";
FpSpread1.Sheets[2].SheetName="Three";
TextBox1.Text=FpSpread1.GetTabText(1);
FpSpread1.Sheets.Count=3
FpSpread1.Sheets(0).SheetName="One"
FpSpread1.Sheets(1).SheetName="Two"
FpSpread1.Sheets(2).SheetName="Three"
TextBox1.Text=FpSpread1.GetTabText(1)
See Also

Reference

FpSpread Class
FpSpread Members