| |
exHTML | 1
|
Currently, the Exontrol's built-in HTML format supports the following HTML tags:
- <b>…</b> displays the text in bold.
- <i>…</i> displays the text in italics.
- <u>…</u> underlines the text.
- <s>…</s>
Strike-through text
- <a id;options>…</a> displays an anchor
element that can be clicked. An anchor is a piece of text or some other
object (for example an image) which marks the beginning and/or the end of a
hypertext link.The <a> element is used to mark that piece of text (or
inline image), and to give its hypertextual relationship to other documents.
The control fires the AnchorClick event when the user clicks an
anchor element. Use the FormatAnchor property to specify the visual
effect for anchor elements. For instance, if the user clicks the anchor <a1>anchor</a>,
the control fires the AnchorClick event, where the AnchorID parameter is 1,
and the Options parameter is empty. Also, if the user clicks the anchor <a
1;yourextradata>anchor</a>, the AnchorID parameter of the
AnchorClick event is 1, and the Options parameter is "yourextradata".
You can use the <a> anchor elements to insert hyperlinks to cells,
bars or links.
- <font face;size>…</font> displays portions of text
with a different font and/or different size. For instance, the <font
Tahoma;12>bit</font> draws the
bit text using the Tahoma font, on size 12 pt. If the name of the font is
missing, and instead size is present, the current font is used with a
different size. For instance, <font ;12>bit</font>
displays the bit text using the current font, but with a different size.
- <fgcolor=RRGGBB>…</fgcolor> displays text with a
specified foreground color. The RR, GG or BB
should be hexa values and indicates red, green and blue values.
- <bgcolor=RRGGBB>…</bgcolor> displays text with a
specified background color.
The RR, GG or BB should be hexa values and indicates red, green and blue
values.
- <br> a forced line-break
- <solidline> The next line shows a solid-line on top/bottom
side. If has no effect for a single line caption.
- <dotline> The next line shows a dot-line on top/bottom side.
If has no effect for a single line caption.
- <upline> The next line shows a solid/dot-line on top side. If
has no effect for a single line caption.
- <r> Right aligns the text
- <c> Centers the text
- <img>number[:width]</img> inserts an icon inside the
text. The number indicates the index of the icon being inserted. Use the
Images method to assign a list of icons to your chart. The last 7 bits in
the high significant byte of the number expression indicates the identifier
of the skin being used to paint the object. Use the Add method to add new
skins to the control. If you need to remove the skin appearance from a part
of the control you need to reset the last 7 bits in the high significant
byte of the color being applied to the part. The width is optional and
indicates the width of the icon being inserted. Using the width option you
can overwrite multiple icons getting a nice effect. By default, if the width
field is missing, the width is 18 pixels.
- <img>key[:width]</img> inserts a custom size picture
into the text being previously loaded using the HTMLPicture property. The
Key parameter indicates the key of the picture being displayed. The Width
parameter indicates a custom size, if you require to stretch the picture,
else the original size of the picture is used.
- & glyph characters as & ( & ), <
( < ), > ( > ), &qout; ( " ) and &#number
( the character with specified code ), For instance, the € displays
the EUR character, in UNICODE configuration. The & ampersand is
only recognized as markup when it is followed by a known letter or a #
character and a digit. For instance if you want to display
<b>bold</b> in HTML caption you can use <b>bold</b>
For instance, the following HTML caption
<font Segoe Print>This is a bit of text with a <b>different</b> font</font>
<upline><dotline>left 1<r><b>right</b> 2
<img>1</img><c><a><s>center <img>pic1:64</img> picture</s><r></a><img>2</img>
left 3 <c>center<r><b>right</b> 4
generates the following screen shot:
Also, newer HTML format supports decorative text like
follows:
| |