BCGControlBar Library for .NET
CheckBoxCell Class
Members 




This class implements a cell with check box.
Object Model
CheckBoxCell ClassGridColumn ClassGridDataItem ClassGridDataRow ClassGridCellVisualStyle Class
Syntax
'Declaration
 
Public Class CheckBoxCell 
   Inherits Cell
'Usage
 
Dim instance As CheckBoxCell
public class CheckBoxCell : Cell 
public __gc class CheckBoxCell : public Cell 
public ref class CheckBoxCell : public Cell 
Example
The following code creates a check box cell for GridDataItem of boolean type:


C# Copy Code
GridDataRow row = new GridDataRow();
GridDataItem item =
new GridDataItem();
item.DataType = GridDataType.CheckBox;
item.ItemData = true;
row.ItemCollection.Add (item);
Inheritance Hierarchy

System.Object
   BCGSoft.Controls.Grid.Cell
      BCGSoft.Controls.Grid.CheckBoxCell

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

CheckBoxCell Members
BCGSoft.Controls.Grid Namespace

Send Feedback