Property SLToSquare.TSLToSquare.Level
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
||
Line 10: | Line 10: | ||
=== Delphi: === | === Delphi: === | ||
<code> | <code> | ||
− | '''property''' Level : Real '''read''' FLevel '''write''' SetLevel; | + | '''property''' Level : Real '''read''' FLevel '''write''' SetLevel '''default''' 0; |
</code> | </code> | ||
=== C++ Builder: === | === C++ Builder: === | ||
<code> | <code> | ||
− | '''__property''' double Level = { '''read'''=FLevel, '''write'''=SetLevel }; | + | '''__property''' double Level = { '''read'''=FLevel, '''write'''=SetLevel, '''default'''=0 }; |
</code> | </code> | ||
Revision as of 20:30, 10 June 2013
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: TSLToSquare
Contents |
Syntax
Delphi:
property Level : Real read FLevel write SetLevel default 0;
C++ Builder:
__property double Level = { read=FLevel, write=SetLevel, default=0 };
Summary
The compare level for the input signal.
Description
Use this property to specify the compare level for the input
signal. If the signal is below or equal the Level the output
signal will be Low, otherwise the output signal will be High.
Delphi example:
SLToSquare1.Level := 20;
C++ Builder example:
SLToSquare1->Level = 20;
Visual C++(MFC) example:
SLToSquare1.Level = 20;
Visual C++/CLI example:
toSquare1->Level = 20;
C# example:
toSquare1.Level = 20;
VB example:
ToSquare1.Level = 20