File: System\Windows\Forms\Design\ToolStripDesignerAvailability.cs
Web Access
Project: src\src\System.Windows.Forms\src\System.Windows.Forms.csproj (System.Windows.Forms)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System.Windows.Forms.Design;
 
[Flags]
public enum ToolStripItemDesignerAvailability
{
    None = 0x00000000,
    ToolStrip = 0x00000001,
    MenuStrip = 0x00000002,
    ContextMenuStrip = 0x00000004,
    StatusStrip = 0x0000008,
    All = ToolStrip | MenuStrip | ContextMenuStrip | StatusStrip
}