[]
Gets or sets an expression whose value is displayed in the text item.
public ExpressionInfo Value { get; set; }
| Type | Description |
|---|---|
| ExpressionInfo | An ExpressionInfo object that evaluates to the text displayed in the text item. |
The value can be a constant expression for static labels.
TextBox textBox = new TextBox();
textBox.Value = "Hello, World!";