DataGridViewImageColumn Constructors

Definition

Initializes a new instance of the DataGridViewImageColumn class.

Overloads

DataGridViewImageColumn()

Initializes a new instance of the DataGridViewImageColumn class, configuring it for use with cell values of type Image.

DataGridViewImageColumn(Boolean)

Initializes a new instance of the DataGridViewImageColumn class, optionally configuring it for use with Icon cell values.

DataGridViewImageColumn()

Initializes a new instance of the DataGridViewImageColumn class, configuring it for use with cell values of type Image.

public:
 DataGridViewImageColumn();
public DataGridViewImageColumn ();
Public Sub New ()

Remarks

This constructor calls DataGridViewImageColumn(Boolean) with a valuesAreIcons parameter value of false.

See also

Applies to

DataGridViewImageColumn(Boolean)

Initializes a new instance of the DataGridViewImageColumn class, optionally configuring it for use with Icon cell values.

public:
 DataGridViewImageColumn(bool valuesAreIcons);
public DataGridViewImageColumn (bool valuesAreIcons);
new System.Windows.Forms.DataGridViewImageColumn : bool -> System.Windows.Forms.DataGridViewImageColumn
Public Sub New (valuesAreIcons As Boolean)

Parameters

valuesAreIcons
Boolean

true to indicate that the Value property of cells in this column will be set to values of type Icon; false to indicate that they will be set to values of type Image.

Remarks

This constructor initializes the column by setting the following properties.

Property Value
CellTemplate A new DataGridViewImageCell with its ValueIsIcon property initialized to the valuesAreIcons parameter value.
ValuesAreIcons The value of the valuesAreIcons parameter.
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. A standard error graphic of type Icon if valuesAreIcons is true and type Bitmap if valuesAreIcons is false.

To ensure that the alpha channel of Icon cell values is painted correctly, use this constructor with a valuesAreIcons parameter value of true.

See also

Applies to