On Print HTMLBody End
From Morfik Wiki
This event is fired on the server after the content of the Body tag is written into the application’s main HTML page and just before the closing Body tag is inserted.
- Where
Server
- Sample code
FX Code
Procedure Project1XApp.XAppPrintHTMLBodyEnd(Response: THTTPResponse; Var Print: Boolean); Begin Response.WritelnString('<div>This text is in the end of HTML Body of this document'); Response.WritelnString('</div>'); End;
| BX Code |
|---|
Published Message Sub XAppPrintHTMLBodyEnd(Response As THttpResponse, ByRef Print As Boolean) Response.WritelnString("<div>This text is in the end of HTML Body of this document") Response.WritelnString("</div>") End Sub |
| CX Code |
|---|
published message void XAppPrintHTMLBodyEnd(THttpResponse Response, ref Boolean Print) { Response.WritelnString("<div>This text is in the end of HTML Body of this document"); Response.WritelnString("</div>"); } |
- Applies to
Project

