GetMarking

Description

Gets the currently marked parameters.

Scripting Syntax

oArray = GetMarking();

Return Value

Returns an Array containing the marked parameters

Examples

1. VBScript Example

dim params

GetPrim "Null"

SetMarking "kine.local.pos,kine.global.pos"

params = GetMarking()

LogMessage "First Marked Parameter = " & params(0)

2. JScript Example

GetPrim( "Null" ) ;

SetMarking( "kine.local.pos,kine.global.pos" ) ;

var params = new VBArray( GetMarking() ).toArray() ;

LogMessage( "First Marked Parameter = " + params[0] ) ;

See Also

SetMarking ClearMarking AddToMarking RemoveFromMarking Parameter.Marked