//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
// FontSize.cs
//
namespace System.Web.UI.WebControls {
using System;
///
///
/// Specifies the font size.
///
///
public enum FontSize {
///
///
/// The font size is not set.
///
///
NotSet = 0,
///
/// The font size is specified as point values.
///
AsUnit = 1,
///
///
/// The font size is smaller.
///
///
Smaller = 2,
///
///
/// The font size is larger.
///
///
Larger = 3,
///
///
/// The font size is extra extra small.
///
///
XXSmall = 4,
///
///
/// The font size is extra small.
///
///
XSmall = 5,
///
/// The font size is small.
///
Small = 6,
///
///
/// The font size is medium.
///
///
Medium = 7,
///
///
/// The font size is large.
///
///
Large = 8,
///
///
/// The font size is extra large.
///
///
XLarge = 9,
///
///
/// The font size is extra extra large.
///
///
XXLarge = 10
}
}