16 lines
522 B
C#
16 lines
522 B
C#
|
//------------------------------------------------------------------------------
|
||
|
// <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,
|
||
|
}
|
||
|
}
|