Class Int32Array
Namespace: Aspose.Html
Assembly: Aspose.HTML.dll (25.2.0)
Represents an array of twos-complement 32-bit signed integers in the platform byte order.
[DOMName("Int32Array")]
[DOMObject]
[ComVisible(true)]
public class Int32Array : TypedArray<int>, INotifyPropertyChanged
Inheritance
object ← DOMObject ← TypedArray ← TypedArray<int> ← Int32Array
Implements
Inherited Members
TypedArray<int>.this[int], TypedArray.Buffer, TypedArray.ByteLength, TypedArray.ByteOffset, TypedArray.Length, DOMObject.GetPlatformType(), object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Constructors
Int32Array(int)
Initializes a new instance of the Aspose.Html.Int32Array class.
public Int32Array(int length)
Parameters
length
int
The length (number of elements).
Int32Array(int[])
Initializes a new instance of the Aspose.Html.Int32Array class.
public Int32Array(int[] data)
Parameters
data
int[]
The array data.
Int32Array(ArrayBuffer)
Initializes a new instance of the Aspose.Html.Int32Array class.
public Int32Array(ArrayBuffer buffer)
Parameters
buffer
ArrayBuffer
The data buffer.
Int32Array(ArrayBuffer, int)
Initializes a new instance of the Aspose.Html.Int32Array class.
public Int32Array(ArrayBuffer buffer, int byteOffset)
Parameters
buffer
ArrayBuffer
The data buffer.
byteOffset
int
The byte offset.
Int32Array(ArrayBuffer, int, int)
Initializes a new instance of the Aspose.Html.Int32Array class.
public Int32Array(ArrayBuffer buffer, int byteOffset, int length)
Parameters
buffer
ArrayBuffer
The data buffer.
byteOffset
int
The byte offset.
length
int
The length.
Fields
BYTES_PER_ELEMENT
The property represents the size in bytes of each element in an typed array.
[DOMName("BYTES_PER_ELEMENT")]
public static readonly byte BYTES_PER_ELEMENT
Field Value
Properties
this[int]
Gets or sets the System.Int32 at the specified index.
public override int this[int index] { get; set; }
Property Value
int </int></int>