Property SLLogger.TSLLogger.Logged
From Mitov Wiki Doc
				
				
				(Difference between revisions)
				
																
				
				
								
				
Latest revision as of 00:24, 22 November 2011
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TSLLogger
Contents | 
Syntax
Delphi:
property Logged : Int64 read FLogged;
C++ Builder:
__property __int64 Logged = { read=FLogged };
Summary
Count of logged samples.
Description
\Returns the count of logged samples.
Delphi example:
AValue : Int64; AValue := SLLogger1.Logged;
C++ Builder example:
__int64 AValue = SLLogger1->Logged;
Visual C++(MFC) example:
__int64 AValue = SLLogger1.Logged;
C# example:
Int64 value = logger1.Logged;