Difference between revisions of "Midware TServerObject.FOnDisplay"

From Overbyte
Jump to navigation Jump to search
(Created page with ' Main page -> Midware component reference -> TServerObject -> [[Midware_TServerObject.FOnDisplay | FOn…')
 
 
Line 2: Line 2:
  
 
== Definition ==
 
== Definition ==
 +
<syntaxhighlight lang="delphi">
 +
type
 +
  TDisplayEvent = procedure (Sender : TObject; Msg : String) of object;
 +
</syntaxhighlight>
 +
  
 
  '''protected''' FOnDisplay : TDisplayEvent;
 
  '''protected''' FOnDisplay : TDisplayEvent;

Latest revision as of 12:59, 24 May 2011

Main page -> Midware component reference -> TServerObject -> FOnDisplay

Definition

<syntaxhighlight lang="delphi"> type

  TDisplayEvent = procedure (Sender : TObject; Msg : String) of object;

</syntaxhighlight>


protected FOnDisplay : TDisplayEvent;

Description

FOnDisplay is used for debugging purpose. It allows a TServerObject to display informations using ORB same event.