This documentation is archived and is not being maintained.
DataGridViewImageCellLayout Enumeration
Visual Studio 2010
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.
void Stretch( Object^ sender, EventArgs^ e ) { System::Collections::IEnumerator^ myEnum = dataGridView1->Columns->GetEnumerator(); while ( myEnum->MoveNext() ) { DataGridViewImageColumn^ column = safe_cast<DataGridViewImageColumn^>(myEnum->Current); column->ImageLayout = DataGridViewImageCellLayout::Stretch; column->Description = L"Stretched"; } } void ZoomToImage( Object^ sender, EventArgs^ e ) { System::Collections::IEnumerator^ myEnum1 = dataGridView1->Columns->GetEnumerator(); while ( myEnum1->MoveNext() ) { DataGridViewImageColumn^ column = safe_cast<DataGridViewImageColumn^>(myEnum1->Current); column->ImageLayout = DataGridViewImageCellLayout::Zoom; column->Description = L"Zoomed"; } } void NormalImage( Object^ sender, EventArgs^ e ) { System::Collections::IEnumerator^ myEnum2 = dataGridView1->Columns->GetEnumerator(); while ( myEnum2->MoveNext() ) { DataGridViewImageColumn^ column = safe_cast<DataGridViewImageColumn^>(myEnum2->Current); column->ImageLayout = DataGridViewImageCellLayout::Normal; column->Description = L"Normal"; } }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: