You can display a check box in a cell using the check box cell. A check box cell can display a small check box that can have one of three states (checked, unchecked, or grayed) or two states (checked or unchecked). You can customize the check box by setting the text, determining the operation of the check box, and setting pictures in place of the standard check box pictures.
To create a cell that acts like a check box, use the CheckBoxCellType class. Create a check box cell using the procedure and example shown below.
You can customize the check box by specifying the image for each of the states. By default, the check box has only two states, checked or unchecked, so to use all three you must set the ThreeState property. In the following table, default appearances are shown with text defined using the TextTrue, TextFalse, and TextIndeterminate properties. Clicking anywhere in the cell changes the check box state.
State Appearance | Description |
---|---|
True (checked) | |
Indeterminate (grayed) | |
False (unchecked) |
You can customize the check box cell with these properties:
Property | Description |
---|---|
Caption | Sets the text in the check box regardless of the state, overriding TextTrue, TextFalse, and TextIndeterminate text settings. |
HotkeyPrefix | Sets whether the ampersand character underlines text and creates an access key. |
TextAlign | Sets how the text is aligned in the cell with respect to the check box graphic. |
TextFalse | Sets the text for the false state of the check box. |
TextIndeterminate | Sets the text for the indeterminate state of the check box. |
TextTrue | Sets the text for the true state of the check box. |
For each state, you can also set custom pictures for each state of the check box cell (making it appear more like a button). You can determine the appearance of the check box according to whether the cell has focus (normal), does not have focus (disabled), or is being clicked (pressed).
Property | Description |
---|---|
BackgroundImage | Sets the background image for the cell. |
Picture | Sets the images to use for the states of the check box. |
ThreeState | Sets whether the check box has three states |
Note that some graphical elements in certain cell types are affected by XP themes (visual styles). Setting the VisualStyles property of the Spread component to "off" can allow visual customizations of those graphical cell types to work as expected. For more information, refer to Using XP Themes with the Component.
For more information on the properties and methods of this cell type, refer to the CheckBoxCellType class.
For more information on the corresponding event when a user clicks on the check box, refer to the FpSpread.ButtonClicked event.
This example creates a check box cell.
C# |
Copy Code
|
---|---|
FarPoint.Win.Spread.CellType.CheckBoxCellType chkboxcell = new FarPoint.Win.Spread.CellType.CheckBoxCellType(); chkboxcell.ThreeState = true; chkboxcell.TextTrue = "Checked!"; chkboxcell.TextFalse = "Check"; chkboxcell.TextIndeterminate = "Not Sure"; fpSpread1.ActiveSheet.Cells[0, 0].CellType = chkboxcell; |
VB |
Copy Code
|
---|---|
Dim chkboxcell As New FarPoint.Win.Spread.CellType.CheckBoxCellType() chkboxcell.ThreeState = true chkboxcell.TextTrue = "Checked!" chkboxcell.TextFalse = "Check" chkboxcell.TextIndeterminate = "Not Sure" fpSpread1.ActiveSheet.Cells(0, 0).CellType = chkboxcell |
Or right-click on the cell or cells and select Cell Type. From the list, select CheckBox. In the CellType editor, set the properties you need. Click Apply.