CustomXmlPartCollection
Contents
[
Hide
]CustomXmlPartCollection class
Represents a Custom XML Data Storage Part (custom XML data within a package).
class CustomXmlPartCollection;
Methods
Method | Description |
---|---|
get(number) | Gets an item at the specified index. |
add(number[], number[]) | Adds an item to the collection. |
selectByID(string) | Gets an item by id. |
getCount() | Gets the number of elements contained in. |
isNull() | Checks whether the implementation object is null. |
get(number)
Gets an item at the specified index.
get(index: number) : CustomXmlPart;
Parameters:
Parameter | Type | Description |
---|---|---|
index | number | The index. |
Returns
add(number[], number[])
Adds an item to the collection.
add(data: number[], shemaData: number[]) : number;
Parameters:
Parameter | Type | Description |
---|---|---|
data | number[] | The XML content of this Custom XML Data Storage Part. |
shemaData | number[] | The set of XML schemas that are associated with this custom XML part. |
selectByID(string)
Gets an item by id.
selectByID(id: string) : CustomXmlPart;
Parameters:
Parameter | Type | Description |
---|---|---|
id | string | Contains the GUID for the custom XML part. |
Returns
getCount()
Gets the number of elements contained in.
getCount() : number;
isNull()
Checks whether the implementation object is null.
isNull() : boolean;