Arbortext Command Language > Functions by Alphabetical Listing > bulleted_list_block_tag_name
  
bulleted_list_block_tag_name
bulleted_list_block_tag_name(arr[, doc])
This function returns the name of the primary bulleted list block tag specified in the document type configuration file (.dcf) for the document type associated with doc. This tag is inserted when users select the bulleted list button on the Application toolbar.
If a tag name is returned, bulleted_list_block_tag_name function returns arr with an attribute name and attribute value, if they were specified for the tag in the .dcf file.
The function returns the null string if there isn't a bulleted list block tag designated for the document type, or if doc is invalid or an ASCII file. If doc is omitted or 0, the current document is used.
For example,
local tag, arr[];
local attr, val;
tag = bulleted_list_block_tag_name(arr);
attr = arr['attribute'];
val = arr['attribute_value'];
Related Topics
Document type configuration files
Configuring tags as list elements
bulleted_list_block_tag_name_ns function
bulleted_list_item_tag_name function
set toolbar4 command