HtmlTextWriterTag 列挙型

定義

HtmlTextWriter オブジェクト出力ストリームまたは Html32TextWriter オブジェクト出力ストリームに渡すことができる HTML タグを指定します。

public enum class HtmlTextWriterTag
public enum HtmlTextWriterTag
type HtmlTextWriterTag = 
Public Enum HtmlTextWriterTag
継承
HtmlTextWriterTag

フィールド

A 1

HTML a 要素。

Acronym 2

HTML acronym 要素。

Address 3

HTML address 要素。

Area 4

HTML area 要素。

B 5

HTML b 要素。

Base 6

HTML base 要素。

Basefont 7

HTML basefont 要素。

Bdo 8

HTML bdo 要素。

Bgsound 9

HTML bgsound 要素。

Big 10

HTML big 要素。

Blockquote 11

HTML blockquote 要素。

Body 12

HTML body 要素。

Br 13

HTML br 要素。

Button 14

HTML button 要素。

Caption 15

HTML caption 要素。

Center 16

HTML center 要素。

Cite 17

HTML cite 要素。

Code 18

HTML code 要素。

Col 19

HTML col 要素。

Colgroup 20

HTML colgroup 要素。

Dd 21

HTML dd 要素。

Del 22

HTML del 要素。

Dfn 23

HTML dfn 要素。

Dir 24

HTML dir 要素。

Div 25

HTML div 要素。

Dl 26

HTML dl 要素。

Dt 27

HTML dt 要素。

Em 28

HTML em 要素。

Embed 29

HTML embed 要素。

Fieldset 30

HTML fieldset 要素。

Font 31

HTML font 要素。

Form 32

HTML form 要素。

Frame 33

HTML frame 要素。

Frameset 34

HTML frameset 要素。

H1 35

HTML H1 要素。

H2 36

HTML H2 要素。

H3 37

HTML H3 要素。

H4 38

HTML H4 要素。

H5 39

HTML H5 要素。

H6 40

HTML H6 要素。

Head 41

HTML head 要素。

Hr 42

HTML hr 要素。

Html 43

HTML html 要素。

I 44

HTML i 要素。

Iframe 45

HTML iframe 要素。

Img 46

HTML img 要素。

Input 47

HTML input 要素。

Ins 48

HTML ins 要素。

Isindex 49

HTML isindex 要素。

Kbd 50

HTML kbd 要素。

Label 51

HTML label 要素。

Legend 52

HTML legend 要素。

Li 53

HTML li 要素。

54

HTML link 要素。

Map 55

HTML map 要素。

Marquee 56

HTML marquee 要素。

Menu 57

HTML menu 要素。

Meta 58

HTML meta 要素。

Nobr 59

HTML nobr 要素。

Noframes 60

HTML noframes 要素。

Noscript 61

HTML noscript 要素。

Object 62

HTML object 要素。

Ol 63

HTML ol 要素。

Option 64

HTML option 要素。

P 65

HTML p 要素。

Param 66

HTML param 要素。

Pre 67

HTML pre 要素。

Q 68

HTML q 要素。

Rt 69

rt 要素のテキストを指定する DHTML ruby 要素。

Ruby 70

DHTML ruby 要素。

S 71

HTML s 要素。

Samp 72

HTML samp 要素。

Script 73

HTML script 要素。

Select 74

HTML select 要素。

Small 75

HTML small 要素。

Span 76

HTML span 要素。

Strike 77

HTML strike 要素。

Strong 78

HTML strong 要素。

Style 79

HTML style 要素。

Sub 80

HTML sub 要素。

Sup 81

HTML sup 要素。

Table 82

HTML table 要素。

Tbody 83

HTML tbody 要素。

Td 84

HTML td 要素。

Textarea 85

HTML textarea 要素。

Tfoot 86

HTML tfoot 要素。

Th 87

HTML th 要素。

Thead 88

HTML thead 要素。

Title 89

HTML title 要素。

Tr 90

HTML tr 要素。

Tt 91

HTML tt 要素。

U 92

HTML u 要素。

Ul 93

HTML ul 要素。

Unknown 0

HTML タグとして渡された文字列は、認識されません。

Var 94

HTML var 要素。

Wbr 95

HTML wbr 要素。

Xml 96

HTML xml 要素。

次の例では、 列挙体の使用方法を HtmlTextWriterTag 示します。 フィールドはImg、 という名前writerの のレンダリング中にHtmlTextWriter使用されます。

// Control the encoding of attributes.
// Simple known values do not need encoding.
writer->AddAttribute( HtmlTextWriterAttribute::Alt, "Encoding, \"Required\"", true );
writer->AddAttribute( "myattribute", "No "encoding " required", false );
writer->RenderBeginTag( HtmlTextWriterTag::Img );
writer->RenderEndTag();
writer->WriteLine();
// Control the encoding of attributes. 
// Simple known values do not need encoding.
writer.AddAttribute(HtmlTextWriterAttribute.Alt, "Encoding, \"Required\"", true);
writer.AddAttribute("myattribute", "No "encoding " required", false);
writer.RenderBeginTag(HtmlTextWriterTag.Img);
writer.RenderEndTag();
writer.WriteLine();
' Control the encoding of attributes.
' Simple known values do not need encoding.
writer.AddAttribute(HtmlTextWriterAttribute.Alt, "Encoding, ""Required""", True)
writer.AddAttribute("myattribute", "No "encoding " required", False)
writer.RenderBeginTag(HtmlTextWriterTag.Img)
writer.RenderEndTag()
writer.WriteLine()

注釈

HtmlTextWriterTag列挙により、出力ストリームは、WEB 要求に応答して HTML マークアップと HTML サーバー コントロールを書き込みます。

適用対象

こちらもご覧ください