Difference between revisions of "Midware TMWTable.OnDisplayInfo"

From Overbyte
Jump to navigation Jump to search
 
 
Line 3: Line 3:
 
== Definition ==
 
== Definition ==
  
  '''proporty''' OnDisplayInfo:TDataSetNotifyEvent;
+
  <syntaxhighlight lang="delphi">
 +
type
 +
  TDisplayInfo = procedure (Sender: TObject; const Msg: String) of Object;
 +
</syntaxhighlight>
 +
 
 +
<syntaxhighlight lang="delphi">
 +
property OnDisplayInfo: TDisplayInfo;
 +
</syntaxhighlight>
  
 
== Description ==
 
== Description ==

Latest revision as of 12:16, 24 May 2011

Main page -> Midware component reference -> TMWTable -> OnDisplayInfo

Definition

<syntaxhighlight lang="delphi">

type

  TDisplayInfo = procedure (Sender: TObject; const Msg: String) of Object;

</syntaxhighlight>

<syntaxhighlight lang="delphi"> property OnDisplayInfo: TDisplayInfo; </syntaxhighlight>

Description

Occurs when TMWTable wants to display debugging informations.

This is used for debugging purpose and should normally not be used in an application. The event handler should display string message somehow on the user interface or log it to some file.