IgnoresUserInput

View as Markdown

Definition

Determines if the drawing tool can be clicked on by the user.

Property Value

A bool value which wen true if the drawing tool cannot not be interacted with by a user; otherwise false. Default is set to false.

Syntax

IgnoresUserInput

Examples

1protected override void OnStateChange()
2{
3 if (State == State.SetDefaults)
4 {
5 IgnoresUserInput = true; // Set this to true to make the drawing object non-interactive
6 }
7 else if (State == State.Configure)
8 {
9
10 }
11}