Web.HTTPProd.THTMLTagAttributes.Custom

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Custom: string read FCustom write SetCustom;

C++

__property System::UnicodeString Custom = {read=FCustom, write=SetCustom};

Properties

Type Visibility Source Unit Parent
property published
Web.HTTPProd.pas
Web.HTTPProd.hpp
Web.HTTPProd THTMLTagAttributes

Description

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

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.

See Also