DataGridViewTriState Enum

Definition

Defines values for specifying one of three possible states.

public enum class DataGridViewTriState
public enum DataGridViewTriState
type DataGridViewTriState = 
Public Enum DataGridViewTriState
Inheritance
DataGridViewTriState

Fields

False 2

The property's state is false.

NotSet 0

The property is not set and will behave in a default manner.

True 1

The property's state is true.

Examples

The following code example illustrates the use of this type.

this.dataGridView1.DefaultCellStyle.WrapMode =
    DataGridViewTriState.True;
Me.dataGridView1.DefaultCellStyle.WrapMode = DataGridViewTriState.True

Remarks

The DataGridViewTriState enumeration is useful whenever a third state is needed in addition to the two states of the Boolean type. For example, the DataGridViewCellStyle.WrapMode property is of type DataGridViewTriState so that a DataGridViewCellStyle object can indicate no preference in regards to the text wrapping of a cell value, and can instead indicate that the WrapMode value of a different DataGridViewCellStyle object should be used.

Applies to

See also