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

