|
|
fl.contactSensitiveSelection
Usagefl.contactSensitiveSelection
DescriptionA Boolean
value that specifies whether Contact Sensitive selection mode is enabled
(true) or not (false).
ExampleThe
following example shows how to disable Contact Sensitive selection
mode before making a selection and then how to reset it to its original
value after making the selection:
var contact = fl.contactSensitiveSelection;
fl.contactSensitiveSelection = false;
// Insert selection code here.
fl.contactSensitiveSelection = contact;
|