HtmlTextWriterStyle Výčet

Definice

Určuje styly HTML dostupné pro výstupní datový proud objektu HtmlTextWriter nebo Html32TextWriter objektu.

public enum class HtmlTextWriterStyle
public enum HtmlTextWriterStyle
type HtmlTextWriterStyle = 
Public Enum HtmlTextWriterStyle
Dědičnost
HtmlTextWriterStyle

Pole

BackgroundColor 0

Určuje styl HTML backgroundcolor .

BackgroundImage 1

Určuje styl HTML backgroundimage .

BorderCollapse 2

Určuje styl HTML bordercollapse .

BorderColor 3

Určuje styl HTML bordercolor .

BorderStyle 4

Určuje styl HTML borderstyle .

BorderWidth 5

Určuje styl HTML borderwidth .

Color 6

Určuje styl HTML color .

Cursor 16

Určuje styl HTML cursor .

Direction 17

Určuje styl HTML direction .

Display 18

Určuje styl HTML display .

Filter 19

Určuje styl HTML filter .

FontFamily 7

Určuje styl HTML fontfamily .

FontSize 8

Určuje styl HTML fontsize .

FontStyle 9

Určuje styl HTML fontstyle .

FontVariant 20

Určuje styl HTML fontvariant .

FontWeight 10

Určuje styl HTML fontheight .

Height 11

Určuje styl HTML height .

Left 21

Určuje styl HTML left .

ListStyleImage 14

Určuje styl HTML liststyleimage .

ListStyleType 15

Určuje styl HTML liststyletype .

Margin 22

Určuje styl HTML margin .

MarginBottom 23

Určuje styl HTML marginbottom .

MarginLeft 24

Určuje styl HTML marginleft .

MarginRight 25

Určuje styl HTML marginright .

MarginTop 26

Určuje styl HTML margintop .

Overflow 27

Určuje styl HTML overflow .

OverflowX 28

Určuje styl HTML overflowx .

OverflowY 29

Určuje styl HTML overflowy .

Padding 30

Určuje styl HTML padding .

PaddingBottom 31

Určuje styl HTML paddingbottom .

PaddingLeft 32

Určuje styl HTML paddingleft .

PaddingRight 33

Určuje styl HTML paddingright .

PaddingTop 34

Určuje styl HTML paddingtop .

Position 35

Určuje styl HTML position .

TextAlign 36

Určuje styl HTML textalign .

TextDecoration 12

Určuje styl HTML textdecoration .

TextOverflow 38

Určuje styl HTML textoverflow .

Top 39

Určuje styl HTML top .

VerticalAlign 37

Určuje styl HTML verticalalign .

Visibility 40

Určuje styl HTML visibility .

WhiteSpace 41

Určuje styl HTML whitespace .

Width 13

Určuje styl HTML width .

ZIndex 42

Určuje styl HTML zindex .

Příklady

Následující příklad používá HtmlTextWriterStyle výčet s metodou AddStyleAttribute k přidání color atributu stylu do elementu HTML a nastaví jeho hodnotu.

writer->AddStyleAttribute( HtmlTextWriterStyle::Color, "Red" );
writer.AddStyleAttribute(HtmlTextWriterStyle.Color, "Red");
writer.AddStyleAttribute(HtmlTextWriterStyle.Color, "Red")

Poznámky

HtmlTextWriter a Html32TextWriter objekty používají tyto hodnoty výčtu k registraci řetězců HTML do správného stylu HTML.

Platí pro

Viz také