timeBeforeTurnPresentation property
Get the time interval before starting a turn presentation.
Returns
- The time interval in seconds.
Throws
- An exception if it fails.
Implementation
int get timeBeforeTurnPresentation {
final OperationResult resultString = objectMethod(
_pointerId,
'FollowPositionPreferences',
'getTimeBeforeTurnPresentation',
);
return resultString['result'];
}
Set the time interval before starting a turn presentation.
Parameters
- IN val The time interval in seconds. -1 means using SDK default value.
Throws
- An exception if it fails.
Implementation
set timeBeforeTurnPresentation(final int val) {
objectMethod(
_pointerId,
'FollowPositionPreferences',
'setTimeBeforeTurnPresentation',
args: val,
);
}