Property VLFreeFrame.TVLFreeFrame.Description
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 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