HtmlTextWriterStyle 列挙型
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
HtmlTextWriter オブジェクト出力ストリームまたは Html32TextWriter オブジェクト出力ストリームで使用できる HTML スタイルを指定します。
public enum class HtmlTextWriterStyle
public enum HtmlTextWriterStyle
type HtmlTextWriterStyle =
Public Enum HtmlTextWriterStyle
- 継承
フィールド
BackgroundColor | 0 | HTML |
BackgroundImage | 1 | HTML |
BorderCollapse | 2 | HTML |
BorderColor | 3 | HTML |
BorderStyle | 4 | HTML |
BorderWidth | 5 | HTML |
Color | 6 | HTML |
Cursor | 16 | HTML |
Direction | 17 | HTML |
Display | 18 | HTML |
Filter | 19 | HTML |
FontFamily | 7 | HTML |
FontSize | 8 | HTML |
FontStyle | 9 | HTML |
FontVariant | 20 | HTML |
FontWeight | 10 | HTML |
Height | 11 | HTML |
Left | 21 | HTML |
ListStyleImage | 14 | HTML |
ListStyleType | 15 | HTML |
Margin | 22 | HTML |
MarginBottom | 23 | HTML |
MarginLeft | 24 | HTML |
MarginRight | 25 | HTML |
MarginTop | 26 | HTML |
Overflow | 27 | HTML |
OverflowX | 28 | HTML |
OverflowY | 29 | HTML |
Padding | 30 | HTML |
PaddingBottom | 31 | HTML |
PaddingLeft | 32 | HTML |
PaddingRight | 33 | HTML |
PaddingTop | 34 | HTML |
Position | 35 | HTML |
TextAlign | 36 | HTML |
TextDecoration | 12 | HTML |
TextOverflow | 38 | HTML |
Top | 39 | HTML |
VerticalAlign | 37 | HTML |
Visibility | 40 | HTML |
WhiteSpace | 41 | HTML |
Width | 13 | HTML |
ZIndex | 42 | HTML |
例
次の例では、 HtmlTextWriterStyle メソッドを使用 AddStyleAttribute して 列挙を使用して、HTML 要素に style 属性を追加 color
し、その値を設定します。
writer->AddStyleAttribute( HtmlTextWriterStyle::Color, "Red" );
writer.AddStyleAttribute(HtmlTextWriterStyle.Color, "Red");
writer.AddStyleAttribute(HtmlTextWriterStyle.Color, "Red")
注釈
HtmlTextWriter および Html32TextWriter オブジェクトは、これらの列挙値を使用して、HTML 文字列を適切な HTML スタイルに登録します。
適用対象
こちらもご覧ください
.NET