States

A collection of states.

Methods:

[], add, anyItem, count, everyItem, firstItem, item, itemByID, itemByName, itemByRange, lastItem, middleItem, nextItem, previousItem, toSource

Property Listing

Property

Type

Access

Description

length

Number

readonly

The number of objects in the collection.

Method Listing

State [] (index:Number)

Returns the State with the specified index.

Parameter

Type

Description

index

Number

The index.

State add (withProperties:Object)

Creates a new State.

Parameter

Type

Description

withProperties

Object

Initial values for properties of the new State (Optional)

State anyItem ()

Returns any State in the collection.

Number count ()

Displays the number of elements in the State.

State everyItem ()

Returns every State in the collection.

State firstItem ()

Returns the first State in the collection.

State item (index:Varies LongInteger String)

Returns the State with the specified index or name.

Parameter

Type

Description

index

LongInteger

String

The index or name. Can accept: Long Integer or String.

State itemByID (id:Number)

Returns the State with the specified ID.

Parameter

Type

Description

id

Number

The ID.

State itemByName (name:String)

Returns the State with the specified name.

Parameter

Type

Description

name

String

The name.

State itemByRange (from:Varies LongInteger State String, to:Varies LongInteger State String)

Returns the States within the specified range.

Parameter

Type

Description

from

LongInteger

State

String

The State, index, or name at the beginning of the range. Can accept: State, Long Integer or String.

to

LongInteger

State

String

The State, index, or name at the end of the range. Can accept: State, Long Integer or String.

State lastItem ()

Returns the last State in the collection.

State middleItem ()

Returns the middle State in the collection.

State nextItem (obj:State)

Returns the State whose index follows the specified State in the collection.

Parameter

Type

Description

obj

State

The State whose index comes before the desired State.

State previousItem (obj:State)

Returns the State with the index previous to the specified index.

Parameter

Type

Description

obj

State

The index of the State that follows the desired State.

String toSource ()

Generates a string which, if executed, will return the State.

Object of

Button.states

MultiStateObject.states

CheckBox.states

RadioButton.states