File: winforms\Managed\System\WinForms\DataGridViewImageCellLayout.cs
Project: ndp\fx\src\System.Windows.Forms.csproj (System.Windows.Forms)
//------------------------------------------------------------------------------
// <copyright file="DataGridViewImageCellLayout.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>                                                                
//------------------------------------------------------------------------------
 
namespace System.Windows.Forms
{
    /// <include file='doc\DataGridViewImageCellLayout.uex' path='docs/doc[@for="DataGridViewImageCellLayout.DataGridViewImageCellLayout"]/*' />
    public enum DataGridViewImageCellLayout
    {
        /// <include file='doc\DataGridViewImageCellLayout.uex' path='docs/doc[@for="DataGridViewImageCellLayout.NotSet"]/*' />
        NotSet = 0,
 
        /// <include file='doc\DataGridViewImageCellLayout.uex' path='docs/doc[@for="DataGridViewImageCellLayout.Normal"]/*' />
        Normal,
 
        /// <include file='doc\DataGridViewImageCellLayout.uex' path='docs/doc[@for="DataGridViewImageCellLayout.Stretch"]/*' />
        Stretch,
 
        /// <include file='doc\DataGridViewImageCellLayout.uex' path='docs/doc[@for="DataGridViewImageCellLayout.Zoom"]/*' />
        Zoom
    }
}