Style.Element Property |
Gets or sets the paragraph element of this style.
[VBScript] Public Property Element As String
[JScript] public function get Element() : String; public function set Element(String);
A string indicating the element the paragraph is mapped to.
Paragraph Styles
Element | Mapping |
---|---|
P | The paragraph is mapped to a HTML element <P> . |
H1, H2, H3, H4, H5, H6 | The paragraph is mapped to a HTML element <H1> , ..., <H6> . |
OL | The paragraph is mapped to a HTML element <OL> and <LI> . |
UL | The paragraph is mapped to a HTML element <UL> and <LI> . |
DT | The paragraph is mapped to a HTML element <DL> and <DT> . |
DD | The paragraph is mapped to a HTML element <DL> and <DD> . |
BQ | The paragraph is mapped to a HTML element <BLOCKQOUTE> . |
PRE | The paragraph is mapped to a HTML element <PRE> . |
TOPIC | The paragraph indicates the start of a new topic page. The paragraph text determines the topic title and the filename of the topic page. |
POPUP | The paragraph is mapped to a popup. The paragraph text determines the popup text. |
Character Styles
Element | Mapping |
---|---|
SPAN | The characters are enclosed in a HTML element <SPAN> . |
B | The characters are enclosed in a HTML element <B> . |
I | The characters are enclosed in a HTML element <I> . |
BI | The characters are enclosed in a HTML element <B><I> . |
S | The characters are enclosed in a HTML element <STRONG> . |
ST | The characters are enclosed in a HTML element <STRIKE> . |
SUB | The characters are enclosed in a HTML element <SUB> . |
SUP | The characters are enclosed in a HTML element <SUP> . |
CODE | The characters are enclosed in a HTML element <CODE> . |
LINK | The characters specify a link. |
LINKID | The characters specify a link ID. |
HTML | The characters are emitted as raw HTML. |
X | The characters will be hidden from the topic page. |