[]
Gets or sets the expression that determines if the check box is checked.
public ExpressionInfo Checked { get; set; }
Type | Description |
---|---|
ExpressionInfo | An ExpressionInfo object that evaluates to a bool value indicating the check box state. |
CheckBox checkBox = new CheckBox();
checkBox.Checked = ExpressionInfo.FromString("true");