> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.ninjatrader.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.ninjatrader.com/_mcp/server.

# IgnoresUserInput

## 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

```csharp

protected override void OnStateChange()
{
     if (State == State.SetDefaults)
     {
           IgnoresUserInput = true; // Set this to true to make the drawing object non-interactive
     }
     else if (State == State.Configure)
     {

     }
}
```