Difference between revisions of "Midware TClientWSocket.OnDisplay"
Jump to navigation
Jump to search
(Created page with ' Main page -> Midware component reference -> TClientWSocket -> [[Midware_TClientWSocket.OnDisplay | O…') |
|||
(One intermediate revision by the same user not shown) | |||
Line 3: | Line 3: | ||
== Definition == | == Definition == | ||
− | + | <syntaxhighlight lang="delphi"> | |
+ | type | ||
+ | TDisplayEvent = procedure (Sender : TObject; Msg : String) of object; | ||
+ | |||
+ | property OnDisplay : TDisplayEvent; | ||
+ | </syntaxhighlight> | ||
== Description == | == Description == | ||
Triggered when the component wants to display something on the user interface. TAppServer install a handler that relay display to his own OnDisplay event handler. | Triggered when the component wants to display something on the user interface. TAppServer install a handler that relay display to his own OnDisplay event handler. | ||
− | |||
− |
Latest revision as of 14:24, 14 May 2011
Main page -> Midware component reference -> TClientWSocket -> OnDisplay
Definition
<syntaxhighlight lang="delphi"> type TDisplayEvent = procedure (Sender : TObject; Msg : String) of object;
property OnDisplay : TDisplayEvent; </syntaxhighlight>
Description
Triggered when the component wants to display something on the user interface. TAppServer install a handler that relay display to his own OnDisplay event handler.