touchHandlerModifyPersistent property
Test whether manually adjusted follow position changes (via touch handler) are persistent.
Returns
- True if changes are persistent, false otherwise
Throws
- An exception if it fails.
Implementation
bool get touchHandlerModifyPersistent {
final OperationResult resultString = objectMethod(
_pointerId,
'FollowPositionPreferences',
'getTouchHandlerModifyPersistent',
);
return resultString['result'];
}
Set manually adjusted follow position changes (via touch handler) persistent from one follow position session to another.
Default value is false
Parameters
- IN isPersistent True to make changes persistent
Throws
- An exception if it fails.
Implementation
set touchHandlerModifyPersistent(final bool isPersistent) {
objectMethod(
_pointerId,
'FollowPositionPreferences',
'setTouchHandlerModifyPersistent',
args: isPersistent,
);
}