Class TypedArray

Class TypedArray

Namespace: Aspose.Html
Assembly: Aspose.HTML.dll (25.2.0)

TypedArray objects present an array-like view of an underlying binary data buffer.

[ComVisible(true)]
[DOMName("TypedArray")]
[DOMObject]
public abstract class TypedArray : DOMObject, INotifyPropertyChanged

Inheritance

objectDOMObjectTypedArray

Derived

TypedArray<t>

Implements

INotifyPropertyChanged

Inherited Members

DOMObject.GetPlatformType(), object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()

Properties

Buffer

Gets the ArrayBuffer referenced by this instance.

[DOMName("buffer")]
public ArrayBuffer Buffer { get; }

Property Value

ArrayBuffer

ByteLength

Gets the byteLength accessor property represents the length of an ArrayBuffer in bytes.

[DOMName("byteLength")]
public int ByteLength { get; }

Property Value

int

ByteOffset

Gets the byteOffset from the start of referenced ArrayBuffer.

[DOMName("byteOffset")]
public int ByteOffset { get; }

Property Value

int

Length

Gets the length of a typed array.

[DOMName("length")]
public int Length { get; }

Property Value

int </t>