Interface IWorksheetGroup
Represents a worksheet group.
Inherited Members
Namespace: Syncfusion.XlsIO
Assembly: Syncfusion.XlsIO.NET.dll
Syntax
public interface IWorksheetGroup : IWorksheet, ITabSheet, IParentApplication, ICalcData
Properties
Count
Number of selected worksheets.
Declaration
int Count { get; }
Property Value
Type |
---|
System.Int32 |
IsEmpty
Indicates whether collection is empty. Read-only.
Declaration
bool IsEmpty { get; }
Property Value
Type |
---|
System.Boolean |
Item[Int32]
Returns single entry from the collection. Read-only.
Declaration
IWorksheet this[int index] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index |
Property Value
Type |
---|
IWorksheet |
Methods
Add(ITabSheet)
Adds new worksheet to the collection.
Declaration
int Add(ITabSheet sheet)
Parameters
Type | Name | Description |
---|---|---|
ITabSheet | sheet | Worksheet to add. |
Returns
Type | Description |
---|---|
System.Int32 | Index of the added worksheet. |
Exceptions
Type | Condition |
---|---|
System.ArgumentNullException | When sheet is Null. |