Interface ISerializableNamedObject
INamedObject interface declaration - object with name, index, and ability to serialize.
Namespace: Syncfusion.XlsIO.Interfaces
Assembly: Syncfusion.XlsIO.Base.dll
Syntax
[CLSCompliant(false)]
public interface ISerializableNamedObject : INamedObject
Properties
Name
Name of the object.
Declaration
string Name { get; set; }
Property Value
Type |
---|
System.String |
RealIndex
Index of the object in the collection.
Declaration
int RealIndex { get; set; }
Property Value
Type |
---|
System.Int32 |
Methods
Serialize(OffsetArrayList)
Serializes this object into OffsetArrayList.
Declaration
void Serialize(OffsetArrayList records)
Parameters
Type | Name | Description |
---|---|---|
OffsetArrayList | records | OffsetArrayList that will receive records of the object. |
Events
NameChanged
Declaration
event ValueChangedEventHandler NameChanged
Event Type
Type |
---|
Syncfusion.XlsIO.Implementation.ValueChangedEventHandler |