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


index
Index of the specified sheet

Glossary Item Box

Gets the text of the sheet name tab at the specified sheet in the Spread component.

Syntax

Visual Basic (Declaration) 
Public Function GetTabText( _
   ByVal index As Integer _
) As String
Visual Basic (Usage)Copy Code
Dim instance As FpSpread
Dim index As Integer
Dim value As String
 
value = instance.GetTabText(index)
C# 
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.
C#Copy Code
FpSpread1.Sheets.Count=3;
FpSpread1.Sheets[0].SheetName="One";
FpSpread1.Sheets[1].SheetName="Two";
FpSpread1.Sheets[2].SheetName="Three";
TextBox1.Text=FpSpread1.GetTabText(1);
Visual BasicCopy Code
FpSpread1.Sheets.Count=3
FpSpread1.Sheets(0).SheetName="One"
FpSpread1.Sheets(1).SheetName="Two"
FpSpread1.Sheets(2).SheetName="Three"
TextBox1.Text=FpSpread1.GetTabText(1)

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.