Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

Version 1 Current »

Description

Gets the frame numbers on which there are selected keys for the selected or specified module and the specified channel.

Functional area

Data retrieval

Command syntax

Syntax

getSelectedKeys propertyName[-onMod string]

Arguments

NameTypeRequiredComments
propertyNamestringyesName of the channel property to count keys for

Flags

NameFlag argumentsArgument typeExclusive toComments
onMod1stringReturns the selected keys for the specified module.

Return value

Integer array

Examples

int $i[]; 
select RKNE;
selectRange 1 2;
selectRange 5 6 -a;
selectKeys -ranges;

$i= `getSelectedKeys Translation`;
print $i; //Output "1 2 5 6"

select;
$i= `getSelectedKeys Translation –onMod RKNE`;
print $i; //Output "1 2 5 6"

Additional information

Related commands

  • No labels