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

# IsImageAttachmentSupported

## Definition

Determines if the Share Service will allow for images as attachments.

## Property Value

A bool value when false, screenshots will be unable to be sent to the social network.

This property should ONLY be set from the **OnStateChange()** method during **State.SetDefaults** or **State.Configure**.

## Syntax

`IsImageAttachmentSupported`

## Examples

```csharp
protected override void OnStateChange()
{         
   if (State == State.SetDefaults)
   {
      IsImageAttachmentSupported = false;
   }
}
```