DataGridViewCheckBoxColumn Constructor (Boolean)

 

Initializes a new instance of the DataGridViewCheckBoxColumn and configures it to display check boxes with two or three states.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
DataGridViewCheckBoxColumn(
	bool threeState
)

Parameters

threeState
Type: System::Boolean

true to display check boxes with three states; false to display check boxes with two states.

This constructor initializes the column by setting the following properties.

Property

Value

CellTemplate

A new DataGridViewCheckBoxCell with its ThreeState property initialized to the threeState parameter value.

ThreeState

The value of the threeState parameter.

DataGridViewColumn::SortMode

DataGridViewColumnSortMode::NotSortable

The Alignment property of the DataGridViewCellStyle object returned by the DefaultCellStyle property.

DataGridViewContentAlignment::MiddleCenter

The NullValue property of the DataGridViewCellStyle object returned by the DefaultCellStyle property.

CheckState::Indeterminate if threeState is true; otherwise, false.

.NET Framework
Available since 2.0
Return to top
Show: