//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.Web.UI.WebControls {
using System;
///
/// Specifies the style of the bulleted list.
///
public enum BulletStyle {
NotSet = 0,
///
/// The choices for an ordered list.
///
Numbered = 1,
LowerAlpha = 2,
UpperAlpha = 3,
LowerRoman = 4,
UpperRoman = 5,
///
/// The choices for an unordered list.
///
Disc = 6,
Circle = 7,
Square = 8,
///
/// The style that matches the Image type.
///
CustomImage = 9
}
///
/// Specifies the mode of the bulleted list.
///
public enum BulletedListDisplayMode
{
Text = 0,
HyperLink = 1,
LinkButton = 2
}
}