'Declaration Public Overridable Property Value As CheckValue
'Usage Dim instance As FpCheckBox Dim value As CheckValue instance.Value = value value = instance.Value
public virtual CheckValue Value {get; set;}
'Declaration Public Overridable Property Value As CheckValue
'Usage Dim instance As FpCheckBox Dim value As CheckValue instance.Value = value value = instance.Value
public virtual CheckValue Value {get; set;}
This property gets or sets the state of the control as an integer value, as follows:
State | Value |
---|---|
False | 0 |
True | 1 |
Indeterminate | 2 |
This property is available at run time only.
Set the state of the control by setting the Checked or CheckState properties.
control.ThreeState = true; control.Checked = false; control.Picture[1] = Image.FromFile("..\\check1.bmp");
control.ThreeState = True control.Checked = False control.Picture(1) = Image.FromFile("..\check1.bmp")