File: winforms\Managed\System\WinForms\ToolStripItemPlacement.cs
Project: ndp\fx\src\System.Windows.Forms.csproj (System.Windows.Forms)
//------------------------------------------------------------------------------
// <copyright file="ToolStripItemPlacement.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>                                                                
//------------------------------------------------------------------------------
 
namespace System.Windows.Forms {
    using System;
	
    /// <include file='doc\ToolStripItemPlacement.uex' path='docs/doc[@for="ToolStripItemPlacement"]/*' />
    /// <devdoc>
    /// ToolStripItemPlacement
    /// This enum represents the current layout of the ToolStripItem. 
    /// </devdoc>
    public enum ToolStripItemPlacement {
        /// <include file='doc\ToolStripItemPlacement.uex' path='docs/doc[@for="ToolStripItemPlacement.Main"]/*' />
        Main,          // in the main winbar itself
        /// <include file='doc\ToolStripItemPlacement.uex' path='docs/doc[@for="ToolStripItemPlacement.Overflow"]/*' />
        Overflow,      // in the overflow window
        /// <include file='doc\ToolStripItemPlacement.uex' path='docs/doc[@for="ToolStripItemPlacement.None"]/*' />
        None           // either offscreen or visible == false so we didn't lay it out
    }
}