Table of Contents

This is a template for code objects.

ObjectName

Object description.

Functions

functionName

Function description.

Syntax

ObjectName.functionName(argument1, argument2);

Arguments

  1. argument1 - (type) argument description
  2. argument2 - (type) argument description

Returns

Exceptions

Example

ObjectName.functionName(125, "data"); //Optional description

See also

Notes

Notes.

Methods

methodName

Method description.

Syntax

myObject.methodName(argument1, argument2);

Arguments

  1. argument1 - (type) argument description
  2. argument2 - (type) argument description

Returns

Exceptions

Example

myObject.methodName(125, "data"); //Optional description

See also

Notes

Notes.

Enumerations

enumerationName

Enumeration description.

Values

  1. value1: value description
  2. value2: value description
  3. value3: value description

Example

ObjectName.functionName(ObjectName.enumerationValue); //Optional description

See also

Notes

Notes.

Variables

variableName

Variable description.

Example

ObjectName.variableName = 42; //Optional description
Script.print(ObjectName.variableName); //Optional description

See also

Notes

Notes.

Events

eventName

Event description.

Syntax

myObject.eventName = function(argument1, argument2) {};

Arguments

  1. argument1 - (type) argument description
  2. argument2 - (type) argument description

Example

myObject.eventName = function(argument1, argument2) {
//Event action
}; //Optional description

See also

Notes

Notes.

Attributes

attributeName

Attribute description.

Example

myObject.attributeName = 42; //Optional description
Script.print(myObject.attributeName); //Optional description

See also

Notes

Notes.