AutoCAD.TypedValueArray

Description

A zero-based array of AutoCAD.TypedValues.

This class holds values stored in an AutoCAD resbuf* chain. Functions that return a resbuf* in the ObjectARX API retun a TypedValueArray in FlexScript.

Properties

length The number of values in the array.

Methods

push Append a value to the array.

Operators

[] Access elements by zero-based index

Details

Do no remove, this fixes the anchor on doc.flexsim.com

AutoCAD.TypedValueArray.length

readonly int length

Description

The number of values in the array.

Do no remove, this fixes the anchor on doc.flexsim.com

AutoCAD.TypedValueArray.push()

push( AutoCAD.TypedValue value )

Parameters

value The value to append

Description

Append a value to the array.

Do no remove, this fixes the anchor on doc.flexsim.com

AutoCAD.TypedValueArray.operator []

AutoCAD.TypedValue operator []( int )

Parameters

The zero-based index of the element.

Returns

AutoCAD.TypedValue The element at the specified index.

Description

Access elements by zero-based index