DataGridViewImageCellLayout Enumeration
.NET Framework 3.5
Specifies the layout for an image contained in a DataGridViewCell.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
| Member name | Description | |
|---|---|---|
| NotSet | The layout specification has not been set. | |
| Normal | The graphic is displayed centered using its native resolution. | |
| Stretch | The graphic is stretched by the percentages required to fit the width and height of the containing cell. | |
| Zoom | The graphic is uniformly enlarged until it fills the width or height of the containing cell. |
The following code example illustrates the use of this type. This example is part of a larger example available in How to: Work with Image Columns in the Windows Forms DataGridView Control.
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"; } }
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.