Property VLTrackTargets.TVLTrackTargets.Level

From Mitov Wiki Doc
(Difference between revisions)
Jump to: navigation, search
(Automated Syncronization with Documentation)
 
(Automated Syncronization with Documentation)
 
Line 10: Line 10:
 
=== Delphi: ===
 
=== Delphi: ===
 
<code>
 
<code>
'''property''' Level : Integer '''read''' FLevel '''write''' SetLevel;
+
'''property''' Level : Integer '''read''' FLevel '''write''' SetLevel '''default''' 3;
 
</code>
 
</code>
  
 
=== C++ Builder: ===
 
=== C++ Builder: ===
 
<code>
 
<code>
'''__property''' int Level = { '''read'''=FLevel,  '''write'''=SetLevel };
+
'''__property''' int Level = { '''read'''=FLevel,  '''write'''=SetLevel,  '''default'''=3 };
 
</code>
 
</code>
  

Latest revision as of 17:19, 18 October 2012

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: TVLTrackTargets

Contents

Syntax

Delphi:

property Level : Integer read FLevel write SetLevel default 3;

C++ Builder:

__property int Level = { read=FLevel, write=SetLevel, default=3 };

Summary

Maximal pyramid level number.

Description

Use this property to specify the maximal pyramid level number. If 0 , pyramids are not used (single level), if 1 , two levels are used, etc.


Delphi example:

VLTrackTargets1.Level := 1;

C++ Builder example:

VLTrackTargets1->Level = 1;

Visual C++(MFC) example:

VLTrackTargets1.Level = 1;

C# Example:

trackTargets1.Level = 1;

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox