Property VLFreeFrame.TVLFreeFrame.MinorVertion
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 MinorVertion : Cardinal read GetMinorVertion;
C++ Builder:
__property unsigned int MinorVertion = { read=GetMinorVertion };
Summary
Returns the minor version of the loaded FreeFrame Plug-In.
Description
Use this property to get the minor version of the loaded
FreeFrame Plug-In.
Delphi example:
var AValue : Cardinal; AValue := VLFreeFrame1.MinorVertion;
C++ Builder example:
unsigned int AValue = VLFreeFrame1->MinorVertion;
Visual C++(MFC) example:
unsigned int AValue = VLFreeFrame1.MinorVertion;
Visual C++/CLI example:
unsigned int value = freeFrame1->MinorVertion;
C# example:
UInt32 value = freeFrame1.MinorVertion;
VB example:
Dim AValue As UInt32 = FreeFrame1.MinorVertion