WebForm.TCommandHTMLElementType
Contents |
Delphi Information
From WebForm.pas
TCommandHTMLElementType = { ctDefault, ctButton, ctImage, ctAnchor, ctEventImages };
Unit: WebForm
Type: enum
C++ Information
From WebForm.hpp
enum TCommandHTMLElementType{ ctDefault, ctButton, ctImage, ctAnchor, ctEventImages };
Unit: WebForm
Type: enum
Description
TCommandHTMLElementType identifies an HTML control type that can be used execute an adapter action.
Each element type indicates a different HTML element. TCommandHTMLElementType defines HTML elements that the user can click to execute a command.
The following table lists the possible values:
| Value | Meaning |
|---|---|
|
ctDefault |
Generate the element type that the adapter action object suggests. |
|
ctButton |
Generate a push button with a text label. |
|
ctImage |
Generate an image that the user can click. |
|
ctAnchor |
Generate a hypertext link. |
|
ctEventImages |
Generate an element that displays a different image, depending on the users action. That is, the image changes dynamically depending on user events such as whether the mouse is over the control, whether the user is clicking the control, and so on. |