Class Float64Array

Class Float64Array

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

Represents an array of 64-bit floating point numbers (corresponding to the C float data type) in the platform byte order.

[ComVisible(true)]
[DOMObject]
[DOMName("Float64Array")]
public class Float64Array : TypedArray<double>, INotifyPropertyChanged

Inheritance

objectDOMObjectTypedArrayTypedArray<double>Float64Array

Implements

INotifyPropertyChanged

Inherited Members

TypedArray<double>.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

Float64Array(int)

Initializes a new instance of the Aspose.Html.Float64Array class.

public Float64Array(int length)

Parameters

length int

The length (number of elements).

Float64Array(double[])

Initializes a new instance of the Aspose.Html.Float64Array class.

public Float64Array(double[] data)

Parameters

data double[]

The array data.

Float64Array(ArrayBuffer)

Initializes a new instance of the Aspose.Html.Float64Array class.

public Float64Array(ArrayBuffer buffer)

Parameters

buffer ArrayBuffer

The data buffer.

Float64Array(ArrayBuffer, int)

Initializes a new instance of the Aspose.Html.Float64Array class.

public Float64Array(ArrayBuffer buffer, int byteOffset)

Parameters

buffer ArrayBuffer

The data buffer.

byteOffset int

The byte offset.

Float64Array(ArrayBuffer, int, int)

Initializes a new instance of the Aspose.Html.Float64Array class.

public Float64Array(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

byte

Properties

this[int]

Gets or sets the System.Double at the specified index.

public override double this[int index] { get; set; }

Property Value

double </double></double>