e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
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
|
|
}
|
|
}
|