Spread Windows Forms 10.0 Product Documentation
Value Property (FpCheckBox)
Example 


Gets or sets the value of the check box control.
Syntax
'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;}

Property Value

CheckValue setting that determines the value of the check box
Remarks

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.

Example
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")
 
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

FpCheckBox Class
FpCheckBox Members
Checked Property
CheckState Property
CheckValue Enumeration

 

 


Copyright © GrapeCity, inc. All rights reserved.