In This Topic
Draws a 3D checkbox in the specifc rectangle.
Syntax
'Declaration
Sub DrawCheckBox( _
ByVal As Rectangle, _
ByVal As ControlState, _
ByVal As CheckState _
)
'Usage
Dim instance As IDrawingContext
Dim rect As Rectangle
Dim controlState As ControlState
Dim state As CheckState
instance.DrawCheckBox(rect, controlState, state)
void DrawCheckBox(
Rectangle ,
ControlState ,
CheckState
)
Parameters
- rect
- The rectangle to draw.
- controlState
- The control state GrapeCity.Spreadsheet.FormControls.ControlState.
- state
- The checkbox state GrapeCity.Spreadsheet.FormControls.CheckState.
See Also