os_caption |
An os_caption
is a caption for an element like os_table . An os_caption
can contain text, text markup containers, and elements like os_image
and os_hyperlink .
Elements are inserted into os_caption
through either the add() member function or operator<<
.
os_caption
can be aligned at the top, bottom, left, or right of its target element.
Alignment can be specified in the constructor or through the align()
member function. Note that the alignment specification supports a feature
proposed for HTML 3.0 and may not be supported by all browsers.
enum os_caption::alignment
{
top, // Places the caption above the table.
bottom, // Places the caption below the table.
left, // Places the caption to the left of the table.
right // Places the caption to the right of the table.
};
os_text element created from text
.os_text element created from text
, with alignment align .os_element::use_default
if not set.Copyright©1994-2026 Recursion
Software LLC
All Rights Reserved