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

# IsUserDrawn

## Definition

Indicates if the drawing tool was manually drawn by a user as opposed to programmatically drawn by a **NinjaScript** object (such as an indicator or strategy).

## Property Value

A bool value which when true if the draw object was manually drawn; otherwise false. This property is read-only.

## Syntax

`IsUserDrawn`

## Examples

```csharp
if (IsUserDrawn)
{
// do something only if the object was drawn manually
}
```