MidItems.TWebButton.Custom
From RAD Studio API Documentation
Delphi
property Custom: string read FCustom write FCustom;
C++
__property System::UnicodeString Custom = {read=FCustom, write=FCustom};
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| property | public | MidItems.pas MidItems.hpp |
MidItems | TWebButton |
Description
Represents a tag option and its value in the generated INPUT tag.
Use Custom to represent one or more options that qualify the INPUT tag generated by the Web button. Each option and its value has the form
OPTIONNAME=Value
The options specified by Custom should be separated by spaces. For example, to add an ALIGN option that aligns the caption and a TABINDEX tag to control tab order, set Custom to
ALIGN=TOP TABINDEX=2