105 lines
1.4 KiB
C#
105 lines
1.4 KiB
C#
|
//------------------------------------------------------------------------------
|
||
|
// <copyright file="HtmlTextWriterStyle.cs" company="Microsoft">
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
// </copyright>
|
||
|
//------------------------------------------------------------------------------
|
||
|
|
||
|
|
||
|
|
||
|
namespace System.Web.UI {
|
||
|
using System;
|
||
|
|
||
|
|
||
|
/// <devdoc>
|
||
|
/// </devdoc>
|
||
|
public enum HtmlTextWriterStyle {
|
||
|
|
||
|
BackgroundColor,
|
||
|
|
||
|
BackgroundImage,
|
||
|
|
||
|
BorderCollapse,
|
||
|
|
||
|
BorderColor,
|
||
|
|
||
|
BorderStyle,
|
||
|
|
||
|
BorderWidth,
|
||
|
|
||
|
Color,
|
||
|
|
||
|
FontFamily,
|
||
|
|
||
|
FontSize,
|
||
|
|
||
|
FontStyle,
|
||
|
|
||
|
FontWeight,
|
||
|
|
||
|
Height,
|
||
|
|
||
|
TextDecoration,
|
||
|
|
||
|
Width,
|
||
|
|
||
|
ListStyleImage,
|
||
|
|
||
|
ListStyleType,
|
||
|
|
||
|
|
||
|
Cursor,
|
||
|
|
||
|
Direction,
|
||
|
|
||
|
Display,
|
||
|
|
||
|
Filter,
|
||
|
|
||
|
FontVariant,
|
||
|
|
||
|
Left,
|
||
|
|
||
|
Margin,
|
||
|
|
||
|
MarginBottom,
|
||
|
|
||
|
MarginLeft,
|
||
|
|
||
|
MarginRight,
|
||
|
|
||
|
MarginTop,
|
||
|
|
||
|
Overflow,
|
||
|
|
||
|
OverflowX,
|
||
|
|
||
|
OverflowY,
|
||
|
|
||
|
Padding,
|
||
|
|
||
|
PaddingBottom,
|
||
|
|
||
|
PaddingLeft,
|
||
|
|
||
|
PaddingRight,
|
||
|
|
||
|
PaddingTop,
|
||
|
|
||
|
Position,
|
||
|
|
||
|
TextAlign,
|
||
|
|
||
|
VerticalAlign,
|
||
|
|
||
|
TextOverflow,
|
||
|
|
||
|
Top,
|
||
|
|
||
|
Visibility,
|
||
|
|
||
|
WhiteSpace,
|
||
|
|
||
|
ZIndex
|
||
|
}
|
||
|
}
|