Property VLFreeFrame.TVLFreeFrame.MajorVertion
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 MajorVertion : Cardinal read GetMajorVertion;
C++ Builder:
__property unsigned int MajorVertion = { read=GetMajorVertion };
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:
var AValue : Cardinal; AValue := VLFreeFrame1.MajorVertion;
C++ Builder example:
unsigned int AValue = VLFreeFrame1->MajorVertion;
Visual C++(MFC) example:
unsigned int AValue = VLFreeFrame1.MajorVertion;
Visual C++/CLI example:
unsigned int value = freeFrame1->MajorVertion;
C# example:
UInt32 value = freeFrame1.MajorVertion;
VB example:
Dim AValue As UInt32 = FreeFrame1.MajorVertion