RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
THTMLTagAttributes.Custom Property

Represents a tag option and its value in an HTML tag.

Pascal
property Custom: string;
C++
__property AnsiString Custom;

Use Custom to represent one or more options to be added to an HTML tag. Each option and its value should have the form

OPTIONNAME=Value

The options specified by Custom should be separated by spaces. For example, to merge a cell in an HTML table with the three adjacent cells to the left and below, the table data tag for the cell requires the ROWSPAN and COLSPAN options to be set. The value of Custom to specify these values would be the string

ROWSPAN=2 COLSPAN=2

The HTML producer inserts the Custom string into the HTML tag when it generates its Content. 

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!