File: winforms\Managed\System\WinForms\ToolStripItemImageScaling.cs
Project: ndp\fx\src\System.Windows.Forms.csproj (System.Windows.Forms)
//------------------------------------------------------------------------------
// <copyright file="ToolStripItemDisplayStyle.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>                                                                
//------------------------------------------------------------------------------
 
 
namespace System.Windows.Forms {
    using System;
 
    /// <include file='doc\ToolStripItemImageScaling.uex' path='docs/doc[@for="ToolStripItemImageScaling"]/*' />
    public enum ToolStripItemImageScaling  { 
        /// <include file='doc\ToolStripItemImageScaling.uex' path='docs/doc[@for="ToolStripItemImageScaling.None"]/*' />
        None, 
        /// <include file='doc\ToolStripItemImageScaling.uex' path='docs/doc[@for="ToolStripItemImageScaling.ShrinkToFit"]/*' />
        SizeToFit
       
    };
}