DataGridViewImageColumn.ImageLayout Property

Definition

Gets or sets the image layout in the cells for this column.

C#
public System.Windows.Forms.DataGridViewImageCellLayout ImageLayout { get; set; }

Property Value

A DataGridViewImageCellLayout that specifies the cell layout. The default is Normal.

Exceptions

The value of the CellTemplate property is null.

Examples

The following code example demonstrates how to stretch and zoom images to fit cells. This example is part of a larger example available in How to: Work with Image Columns in the Windows Forms DataGridView Control.

C#
private void Stretch(object sender, EventArgs e)
{
    foreach (DataGridViewImageColumn column in
        dataGridView1.Columns)
    {
        column.ImageLayout = DataGridViewImageCellLayout.Stretch;
        column.Description = "Stretched";
    }
}

private void ZoomToImage(object sender, EventArgs e)
{

    foreach (DataGridViewImageColumn column in
        dataGridView1.Columns)
    {
        column.ImageLayout = DataGridViewImageCellLayout.Zoom;
        column.Description = "Zoomed";
    }
}

private void NormalImage(object sender, EventArgs e)
{

    foreach (DataGridViewImageColumn column in
        dataGridView1.Columns)
    {
        column.ImageLayout = DataGridViewImageCellLayout.Normal;
        column.Description = "Normal";
    }
}

Remarks

Getting or setting this property gets or sets the ImageLayout property of the object returned by the CellTemplate property. Setting this property also sets the ImageLayout property of every cell in the column and refreshes the column display. To override the specified value for individual cells, set the cell values after you set the column value.

Applies to

Produkt Verzie
.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, 10

See also