Parameters
- index
- Index of the specified sheet
Return Value
String containing the text to be displayed in the sheet name tab
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).
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)