Lire en anglais Modifier

Partager via


DataGridViewTriState Enum

Definition

Defines values for specifying one of three possible states.

public enum DataGridViewTriState
Inheritance
DataGridViewTriState

Fields

Name Value Description
NotSet 0

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

True 1

The property's state is true.

False 2

The property's state is false.

Examples

The following code example illustrates the use of this type.

this.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

Produit Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

See also