Property VLFreeFrame.TVLFreeFrame.About
From Mitov Wiki Doc
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