Difference between revisions of "Midware TClientWSocket.OnDisplay"

From Overbyte
Jump to navigation Jump to search
 
Line 3: Line 3:
 
== Definition ==
 
== Definition ==
  
  '''property''' OnDisplay: '''TDisplayEvent''';
+
<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.