Property SLScope.TSLDisplayViewBackground.Color
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
||
Line 10: | Line 10: | ||
=== Delphi: === | === Delphi: === | ||
<code> | <code> | ||
− | '''property''' Color : TLPControlColor '''read''' FColor '''write''' SetColor '''default''' | + | '''property''' Color : TLPControlColor '''read''' FColor '''write''' SetColor '''default''' uclBlack; |
</code> | </code> | ||
=== C++ Builder: === | === C++ Builder: === | ||
<code> | <code> | ||
− | '''__property''' TLPControlColor Color = { '''read'''=FColor, '''write'''=SetColor, '''default'''= | + | '''__property''' TLPControlColor Color = { '''read'''=FColor, '''write'''=SetColor, '''default'''=uclBlack }; |
</code> | </code> | ||
Revision as of 20:29, 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: TSLDisplayViewBackground
Contents |
Syntax
Delphi:
property Color : TLPControlColor read FColor write SetColor default uclBlack;
C++ Builder:
__property TLPControlColor Color = { read=FColor, write=SetColor, default=uclBlack };
Summary
Specifies custom color for the view.
Description
Use this property to specify custom color for the view.
If UseControlColor is True this property will be ignored.