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
object ← DOMObject ← TypedArray
Derived
Implements
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
ByteLength
Gets the byteLength accessor property represents the length of an ArrayBuffer in bytes.
[DOMName("byteLength")]
public int ByteLength { get; }
Property Value
ByteOffset
Gets the byteOffset from the start of referenced ArrayBuffer.
[DOMName("byteOffset")]
public int ByteOffset { get; }
Property Value
Length
Gets the length of a typed array.
[DOMName("length")]
public int Length { get; }
Property Value
int </t>