RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
TWebForm.ImplContent Method

Provides the underlying implementation for the Content method.

Pascal
function ImplContent(Options: TWebContentOptions; Layout: TLayout): string; virtual; abstract;
C++
virtual __fastcall AnsiString ImplContent(TWebContentOptions Options, TLayout Layout) = 0;

The Content method calls ImplContent to generate the HTML form. ImplContent is anabstract or, in C++ terminology, pure virtual method in TWebForm. TWebForm descendants override it to generate the HTML form.  

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 TWebForm should format the HTML control it generates. Typically, this parameter is nil (Delphi) or NULL (C++) for forms. 

ImplContent returns an HTML form definition. 

 

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