[]
Gets or sets the initial state of a toggle image, if present in the textbox. The image displays a plus sign (+) for collapsed state and a minus sign (-) for expanded state.
public ToggleImage ToggleImage { get; set; }
Type | Description |
---|---|
ToggleImage | A ToggleImage object indicating the initial state of the toggle image. |
The ToggleImage works with the Visibility class for toggling report items within the textbox.
TextBox textBox = new TextBox();
textBox.ToggleImage = new ToggleImage { InitialState = ExpressionInfo.FromString("true") };