DataGridViewTextBoxColumn.CellTemplate Property

Definition

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Gets or sets the template used to model cell appearance.

[System.ComponentModel.Browsable(false)]
public override System.Windows.Forms.DataGridViewCell CellTemplate { get; set; }
[System.ComponentModel.Browsable(false)]
public override System.Windows.Forms.DataGridViewCell? CellTemplate { get; set; }

Property Value

A DataGridViewCell that all other cells in the column are modeled after.

Attributes

Exceptions

The set type is not compatible with type DataGridViewTextBoxCell.

Examples

The following code example demonstrates the use of the DataGridViewColumn.CellTemplate property, which is similar to this property. This example is part of a larger example available in How to: Manipulate Columns in the Windows Forms DataGridView Control.

private void CustomizeCellsInThirdColumn()
{
    int thirdColumn = 2;
    DataGridViewColumn column =
        dataGridView.Columns[thirdColumn];
    DataGridViewCell cell = new DataGridViewTextBoxCell();

    cell.Style.BackColor = Color.Wheat;
    column.CellTemplate = cell;
}

Remarks

The constructor for the DataGridViewTextBoxColumn class initializes this property to a newly created DataGridViewTextBoxCell.

Ettevaatust!

Changing the properties of the cell template will not immediately affect the user interface (UI) of the column's existing cells. These changes are only apparent after the column is regenerated (for example, by sorting the column or through a call to the DataGridView.InvalidateColumn method).

Applies to

Toode Versioonid
.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