touchHandlerModifyPersistent property
Test whether manually adjusted follow position changes (via touch handler) are persistent.
Returns
- True if changes are persistent, false otherwise
Implementation
bool get touchHandlerModifyPersistent {
final OperationResult resultString = objectMethod(
_pointerId,
'FollowPositionPreferences',
'getTouchHandlerModifyPersistent',
dependencyId: _mapPointerId,
);
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
Implementation
set touchHandlerModifyPersistent(final bool isPersistent) {
objectMethod(
_pointerId,
'FollowPositionPreferences',
'setTouchHandlerModifyPersistent',
args: isPersistent,
dependencyId: _mapPointerId,
);
}