Class WorksheetCustomProperty
Represents worksheet custom property.
Inheritance
System.Object
WorksheetCustomProperty
Namespace: Syncfusion.XlsIO.Implementation
Assembly: Syncfusion.XlsIO.UWP.dll
Syntax
public class WorksheetCustomProperty : Object, ICustomProperty, ICloneable
Constructors
WorksheetCustomProperty(CustomPropertyRecord)
Creates new instance of the class.
Declaration
public WorksheetCustomProperty(CustomPropertyRecord property)
Parameters
Type | Name | Description |
---|---|---|
CustomPropertyRecord | property | Low level property data. |
WorksheetCustomProperty(String)
Creates new instance of the class.
Declaration
public WorksheetCustomProperty(string strName)
Parameters
Type | Name | Description |
---|---|---|
System.String | strName | Name of the new property. |
Properties
Name
Returns name of the property. Read-only.
Declaration
public string Name { get; }
Property Value
Type |
---|
System.String |
Value
Gets / sets value of the property.
Declaration
public string Value { get; set; }
Property Value
Type |
---|
System.String |
Methods
Clone()
Creates a copy of the current object.
Declaration
public object Clone()
Returns
Type | Description |
---|---|
System.Object | A copy of the current object. |
Serialize(OffsetArrayList)
Serializes property into list of Biff records.
Declaration
public void Serialize(OffsetArrayList records)
Parameters
Type | Name | Description |
---|---|---|
OffsetArrayList | records | OffsetArrayList to serialize into. |
Implements
System.ICloneable