// Copyright © 2013 The CefSharp Authors. All rights reserved. // // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. namespace CefSharp { /// /// Supported menu item types. /// public enum MenuItemType { /// /// An enum constant representing the none option. /// None = 0, /// /// An enum constant representing the command option. /// Command, /// /// An enum constant representing the check option. /// Check, /// /// An enum constant representing the radio option. /// Radio, /// /// An enum constant representing the separator option. /// Separator, /// /// An enum constant representing the sub menu option. /// SubMenu } }