Class IntArray

IntArray class

The integer array. The INT_ARRAY element declares the storage for a homogenous array of integer values.

public class IntArray : ColladaElement

Constructors

NameDescription
IntArray()Initializes a new instance of the IntArray class.

Properties

NameDescription
Count { get; set; }Gets or sets the count. The count attribute indicates the number of values in the array. Required attribute.
Id { get; set; }Gets or sets the id. The id attribute is a text string containing the unique identifier of this element. This value must be unique within the instance document. Optional attribute.
MaxInclusive { get; set; }Gets or sets the max inclusive. The maxInclusive attribute indicates the largest integer value that can be contained in the array. The default value is 2147483647. Optional attribute.
MinInclusive { get; set; }Gets or sets the min inclusive. The minInclusive attribute indicates the smallest integer value that can be contained in the array. The default value is -2147483648. Optional attribute.
Name { get; set; }Gets or sets the name. The name attribute is the text string name of this element. Optional attribute.
Text { get; set; }Gets or sets the value as text.

See Also