
Photoshop CS Scripting Guide
19
Scripting basics
Values
2
T
ABLE
2.2
Visual Basic Values
Value type:
What it is:
Example:
Boolean
Logical true or false
True
Long
Whole numbers (no decimal
points). Longs can be
positive or negative.
14
Double
A number which may
contain a decimal point.
13.9972
String
A series of text characters.
Strings appear inside
(straight) quotation marks.
"I am a string"
Array
A list of values. Arrays
contain a single value type
unless the type is defined as
Variant.
Array(10.0, 20.0, 30.0, 40.0)
Object reference
A specific reference to an
object.
appRef.ActiveDocument
T
ABLE
2.3
JavaScript Values
Value type:
What it is:
Example:
String
A series of text characters.
Strings appear inside
(straight) quotation marks.
"Hello"
Number
Any number not inside
double quotes.
3.7
Boolean
Logical true or false.
true
Null
Something that points to
nothing.
null
Object
Properties and methods
belonging to an object or
array.
activeDocument
Undefined
Devoid of any value
undefined