Property VLFreeFrame.TVLFreeFrame.About

From Mitov Wiki Doc
(Difference between revisions)
Jump to: navigation, search
(Automated Syncronization with Documentation)
 
(Automated Syncronization with Documentation)
Line 10: Line 10:
 
=== Delphi: ===
 
=== Delphi: ===
 
<code>
 
<code>
'''property''' About : String '''read''' GetAbout;
+
'''property''' About : String '''read''' FAbout;
 
</code>
 
</code>
  
 
=== C++ Builder: ===
 
=== C++ Builder: ===
 
<code>
 
<code>
'''__property''' String About = { '''read'''=GetAbout };
+
'''__property''' String About = { '''read'''=FAbout };
 
</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: 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

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox