Skip to content

JsGetIndexedPropertiesExternalData

Limin Zhu edited this page Oct 9, 2015 · 1 revision

Retrieves an object's indexed properties external data information.

Syntax

STDAPI_(JsErrorCode)
    JsGetIndexedPropertiesExternalData(
    _In_ JsValueRef object,
    _Out_ void** data,
    _Out_ JsTypedArrayType* arrayType,
    _Out_ unsigned int* elementLength);

Parameters

  • object: The object.
  • data: The external data back store for the object's indexed properties.
  • arrayType: The array element type in external data.
  • elementLength: The number of array elements in external data.

Return Value

The code JsNoError if the operation succeeded, a failure code otherwise.

Clone this wiki locally