Class XmpArray
Represents Xmp array.
Inherited Members
Namespace: Syncfusion.Pdf.Xmp
Assembly: Syncfusion.Pdf.NET.dll
Syntax
public class XmpArray : XmpCollection
Properties
ArrayType
Gets type of the array.
Declaration
protected override XmpArrayType ArrayType { get; }
Property Value
Type |
---|
XmpArrayType |
Overrides
Items
Gets array of the array values.
Declaration
public string[] Items { get; }
Property Value
Type |
---|
System.String[] |
Methods
Add(XmpStructure)
Adds an XMP structure.
Declaration
public void Add(XmpStructure structure)
Parameters
Type | Name | Description |
---|---|---|
XmpStructure | structure | The structure. |
Add(DateTime)
Adds Date to the array.
Declaration
public void Add(DateTime value)
Parameters
Type | Name | Description |
---|---|---|
System.DateTime | value | Value to be added to the array. |
Add(DateTime, String)
Adds Date to the array.
Declaration
public void Add(DateTime value, string format)
Parameters
Type | Name | Description |
---|---|---|
System.DateTime | value | Value to be added to the array. |
System.String | format | String format of the date. |
Add(Int32)
Adds integer value to the array.
Declaration
public void Add(int value)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | value | Value to be added to the array. |
Add(Single)
Adds float value to the array.
Declaration
public void Add(float value)
Parameters
Type | Name | Description |
---|---|---|
System.Single | value | Value to be added to the array. |
Add(String)
Adds string value to the array.
Declaration
public void Add(string value)
Parameters
Type | Name | Description |
---|---|---|
System.String | value | Value to be added to the array. |