Interface ITabSheets
Represents a collection of ITabSheets in the worksheet.
Namespace: Syncfusion.XlsIO
Assembly: Syncfusion.XlsIO.NET.dll
Syntax
public interface ITabSheets
Properties
Count
Gets the number of ITabSheet in the collection. Read-only.
Declaration
int Count { get; }
Property Value
Type |
---|
System.Int32 |
Item[Int32]
Gets the ITabSheet at the specified index. Read-only.
Declaration
ITabSheet this[int index] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index |
Property Value
Type |
---|
ITabSheet |
Methods
Move(Int32, Int32)
Moves sheet into new location.
Declaration
void Move(int iOldIndex, int iNewIndex)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | iOldIndex | Index of the sheet. |
System.Int32 | iNewIndex | New index to move the sheet. |
MoveAfter(ITabSheet, ITabSheet)
Moves specified sheet after another sheet.
Declaration
void MoveAfter(ITabSheet sheetToCopy, ITabSheet sheetForPlacement)
Parameters
Type | Name | Description |
---|---|---|
ITabSheet | sheetToCopy | The sheet to move. |
ITabSheet | sheetForPlacement | The sheet to locate new position. |
MoveBefore(ITabSheet, ITabSheet)
Moves specified sheet before another sheet.
Declaration
void MoveBefore(ITabSheet sheetToMove, ITabSheet sheetForPlacement)
Parameters
Type | Name | Description |
---|---|---|
ITabSheet | sheetToMove | The sheet to move. |
ITabSheet | sheetForPlacement | The sheet to locate new position. |