Property VLFreeFrame.TVLFreeFrameVersion.Major
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
Revision as of 00:16, 11 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: TVLFreeFrameVersion
Contents |
Syntax
Delphi:
property Major : Cardinal read FMajor;
C++ Builder:
__property unsigned int Major = { read=FMajor };
Summary
Returns the major version of the loaded FreeFrame Plug-In.
Description
Use this property to get the major version of the loaded
FreeFrame Plug-In.
Delphi example:
<c>var AValue : Cardinal;</c> <c>AValue := VLFreeFrame1.Vertion.Major;</c>
C++ Builder example:
<c>unsigned int AValue = VLFreeFrame1->Vertion->Major;</c>
Visual C++(MFC) example:
<c>unsigned int AValue = VLFreeFrame1.Vertion.Major;</c>
Visual C++/CLI example:
<c>unsigned int value = freeFrame1->Vertion->Major;</c>
C# example:
<c>UInt32 value = freeFrame1.Vertion.Major;</c>
VB example:
<c>Dim AValue As UInt32 = FreeFrame1.Vertion.Major</c>