FlexPivot for WinForms
GetCellCheck メソッド (C1FlexGridBase)

C1.Win.C1FlexGrid.4.5.2 アセンブリ > C1.Win.C1FlexGrid 名前空間 > C1FlexGridBase クラス : GetCellCheck メソッド
Row index.
Column index.
Gets the state of the checkbox in a grid cell.
シンタックス
'宣言
 
Public Overridable Function GetCellCheck( _
   ByVal row As System.Integer, _
   ByVal col As System.Integer _
) As CheckEnum
public virtual CheckEnum GetCellCheck( 
   System.int row,
   System.int col
)

パラメータ

row
Row index.
col
Column index.

戻り値の型

One of the values in the CheckEnum enumeration.
解説

By default, the grid displays values in Boolean columns as check boxes (the column's data type determined by the RowCol.DataType property). If you don't want Boolean values displayed as check boxes, set the column's RowCol.Format property to a string containing the values that should be displayed for True and False values, separated by a semi-colon. For example:

flex.Cols["CheckBoxes"].DataType = typeof(bool); flex.Cols["yesNo"].DataType = typeof(bool); flex.Cols["yesNo"].Format := "Yes;No";

In unbound mode, you can use the GetCellCheck and SetCellCheck methods to add check boxes to any cells. The check boxes will be displayed along with any text in the cell, and you can set their position using the column's RowCol.ImageAlign property.

There are two types of check boxes: Boolean and tri-state. Boolean check boxes toggle between the CheckEnum.Checked and CheckEnum.Unchecked states. Tri-state check boxes cycle through the settings CheckEnum.TSChecked, CheckEnum.TSUnchecked, and CheckEnum.TSGrayed.

For example, the code below creates a Boolean checkbox in cell (3,3) and a tri-state checkbox in cell (4,3):

flex.SetCellCheck(3, 3, CheckEnum.Unchecked) // Boolean; flex.SetCellCheck(4, 3, CheckEnum.TSUnchecked) // tri-state;
参照

C1FlexGridBase クラス
C1FlexGridBase メンバ