MidItems.TDataSetButton.ImplContent
Delphi
function ImplContent(Options: TWebContentOptions; ParentLayout: TLayout): string; override;
C++
virtual System::UnicodeString __fastcall ImplContent(Webcomp::TWebContentOptions* Options, System::TObject* ParentLayout);
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| function | protected | MidItems.pas MidItems.hpp |
MidItems | TDataSetButton |
Description
Provides the underlying implementation for the Content method.
MidItems.TDataSetButton.ImplContent inherits from MidItems.TWebButton.ImplContent. All content below this line refers to MidItems.TWebButton.ImplContent.
Provides the underlying implementation for the Content method.
The Content method calls ImplContent to generate the HTML that defines the button control. TWebButton introduces ImplContent as an abstract or, in C++ terminology, pure virtual method. TWebButton descendants must override ImplContent to generate the definition of their particular button control.
Options contains a set of flags that limit what can be included in the generated HTML.
ParentLayout specifies a helper object that the caller supplies for determining how the Web button should format the HTML control it generates. It implements the ILayoutWebContent interface.
ImplContent returns a string of HTML defining the button control.