Property VLFreeFrame.TVLFreeFrame.Description
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
||
(5 intermediate revisions by one user not shown) | |||
Line 10: | Line 10: | ||
=== Delphi: === | === Delphi: === | ||
<code> | <code> | ||
− | '''property''' Description : String '''read''' | + | '''property''' Description : String '''read''' FDescription; |
</code> | </code> | ||
=== C++ Builder: === | === C++ Builder: === | ||
<code> | <code> | ||
− | '''__property''' String Description = { '''read'''= | + | '''__property''' String Description = { '''read'''=FDescription }; |
</code> | </code> | ||
Latest revision as of 00:11, 26 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: TVLFreeFrame
Contents |
Syntax
Delphi:
property Description : String read FDescription;
C++ Builder:
__property String Description = { read=FDescription };
Summary
Returns Description string from the FreeFrame Plug-In.
Description
Use this property to obtain the Description string from the
FreeFrame Plug-In.
Delphi example:
var AValue : String; AValue := VLFreeFrame1.Description;
C++ Builder example:
AnsiString AValue = VLFreeFrame1->Description;
Visual C++(MFC) example:
CString AValue = VLFreeFrame1.Description;
Visual C++/CLI example:
String ^value = freeFrame1->Description;
C# example:
String value = freeFrame1.Description;
VB example:
Dim AValue As String = FreeFrame1.Description