DataGridViewTriState Enumeration

 

Defines values for specifying one of three possible states.

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

public enum class DataGridViewTriState

Member nameDescription
False

The property's state is false.

NotSet

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

True

The property's state is true.

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.

The following code example illustrates the use of this type.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show: