System Property Methods
string value(string itemType, string propertyPath)
Returns the value of the specified System Property.
The "
itemType
" parameter value indicates the type of item containing the property (not case sensitive):
- "
Composition
" - "
Band
" - "
Track
" - "
MessageClip
" - "
Message
" - "
Browser Action
" - "
Target
" - "
Destination
" - "
Delay
"
The " propertyPath
" parameter contains a property path as specified for In Situ Substitution Expressions.
This line of code sets a new value into the specified System Property:
void set(string itemType, string propertyPath, var newValue)
The "
itemType
" and "
propertyPath
" parameters are the same as for the "
value
" method.
The "
newValue
" parameter is the new value for the property. It can be null. (The "
undefined
" value is treated as null.) The value will be converted to a string.