16 lines
522 B
C#
Raw Normal View History

//------------------------------------------------------------------------------
// <copyright file="MenuRenderingMode.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Web.UI.WebControls {
/// <devdoc>
/// Specifies how a Menu Control should render.
/// </devdoc>
public enum MenuRenderingMode {
Default,
Table,
List,
}
}