Previous Topic: Tools ObjectNext Topic: Test a Business Logic Formula


Vector Object

A class of objects that can be created using CreateObject. The CreateObject represents a sequence of number-type values that support random access to each value by an index starting from zero.

(<Index>)=<Value>

Inserts the Value at the specified Index.

(<Index>)

Returns a Value by Index. If the Index is not found, Empty is returned.

Item(<Index>)=<Value>

Inserts the Value at the specified Index.

Item(<Index>)

Returns a Value by Index. If the Index is not found, Empty is returned.

Count

Returns the number of elements in the Vector.

Empty

Returns True if the number of elements in the Vector is zero; otherwise, returns False.

Clear

Removes all elements from the Vector.

Sort

Sorts Values.

Add(<Value>)

Inserts a Value at the next unused Index.

Dump

Returns a string containing all Vector information in a readable format.

Out

A global object that enables the formula to send alerts as well as log messages.