Interface IWorksheetCustomProperties
Returns a CustomProperties object representing the identifier information associated with a worksheet.
Namespace: Syncfusion.XlsIO
Assembly: Syncfusion.XlsIO.UWP.dll
Syntax
public interface IWorksheetCustomProperties
Properties
Count
Gets number of elements in the collection. Read-only.
Declaration
int Count { get; }
Property Value
Type |
---|
System.Int32 |
Item[Int32]
Gets single entry from the collection by index based on specified int value. Read-only.
Declaration
ICustomProperty this[int index] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index |
Property Value
Type |
---|
ICustomProperty |
Item[String]
Gets single entry from the collection by index based on specified string value. Read-only.
Declaration
ICustomProperty this[string strName] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.String | strName |
Property Value
Type |
---|
ICustomProperty |
Methods
Add(String)
Adds new property to the collection.
Declaration
ICustomProperty Add(string strName)
Parameters
Type | Name | Description |
---|---|---|
System.String | strName | Name of the new property. |
Returns
Type | Description |
---|---|
ICustomProperty | Newly created property. |
Contains(String)
Determines whether collection contains property with a specific name.
Declaration
bool Contains(string strName)
Parameters
Type | Name | Description |
---|---|---|
System.String | strName | The name of the property to locate. |
Returns
Type | Description |
---|---|
System.Boolean | True if collection contains required element. |