Lists

The routines in this category allow you to create ordered (numbered), unordered (bulleted) and definition lists.

Ordered Lists

RW_START_OLIST Starts a numbered list.
RW_END_OLIST Ends a numbered list.
RWS_OLIST Tags a string as a numbered list.
RW_MAKE_OLIST Creates and populates a numbered list. Appends the HTML to the output buffer..
RWA_MAKE_OLIST Creates and populates a numbered list. Appends the HTML to a string..

Unordered Lists

RW_START_ULIST Starts a bulleted list.
RW_END_ULIST Ends a bulleted list.
RWS_ULIST Tags a string as a bulleted list.
RW_MAKE_ULIST Creates and populates a bulleted list. Appends the HTML to the output buffer.
RWA_MAKE_ULIST Creates and populates a bulleted list. Appends the HTML to a string.

Definition Lists

RW_START_DLIST Starts a definition list.
RW_DLIST_ITEM Adds a new term and its definition to a previously opened definition list.
RW_END_DLIST Ends a definition list.
RWS_DLIST_DEF Tags a string as a definition in a definition list.
RWS_DLIST_TERM Tags a string as a term in a definition list.
RWS_DLIST Tags a string as a definition list.
RW_MAKE_DLIST Creates and populates a definition list. Appends the HTML to the output buffer.
RWA_MAKE_DLIST Creates and populates a definition list. Appends the HTML to a string.
*RW_START_DEFINITION (Deprecated) Starts a definition list.
*RW_DEFINITION_ITEM (Deprecated) Adds a new term and its definition to a previously opened definition list.
*RW_END_DEFINITION (Deprecated) Ends a definition list.

 

List Items

RW_START_LIST_ITEM Defines the start of a list item.
RW_END_LIST_ITEM Defines the end of a list item.
RWS_LIST_ITEM Tags a string as a list item.

 

A leading asterisk indicates that the subroutine was present in RealWeb 2.

Go to top button