Property VLFreeFrame.TVLFreeFrame.About
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''' About : String '''read''' | + | '''property''' About : String '''read''' FAbout; |
</code> | </code> | ||
=== C++ Builder: === | === C++ Builder: === | ||
<code> | <code> | ||
− | '''__property''' String About = { '''read'''= | + | '''__property''' String About = { '''read'''=FAbout }; |
</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 About : String read FAbout;
C++ Builder:
__property String About = { read=FAbout };
Summary
Returns About string from the FreeFrame Plug-In.
Description
Use this property to obtain the About string from the
FreeFrame Plug-In.
Delphi example:
var AValue : String; AValue := VLFreeFrame1.About;
C++ Builder example:
AnsiString AValue = VLFreeFrame1->About;
Visual C++(MFC) example:
CString AValue = VLFreeFrame1.About;
Visual C++/CLI example:
String ^value = freeFrame1->About;
C# example:
String value = freeFrame1.About;
VB example:
Dim AValue As String = FreeFrame1.About