//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Web.UI.WebControls.WebParts { using System; /// /// Specifies how to render the WebPartVerbs. /// public enum WebPartVerbRenderMode { /// /// Render the WebPartVerbs in a popup menu in the WebPart TitleBar. /// Menu = 0, /// /// Render the WebPartVerbs as links or buttons directly in the WebPart TitleBar. /// This mode is keyboard accessible. /// TitleBar = 1, } }