Property VLFreeFrame.TVLFreeFrameVersion.Minor
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: TVLFreeFrameVersion
Contents |
Syntax
Delphi:
property Minor : Cardinal read FMinor;
C++ Builder:
__property unsigned int Minor = { read=FMinor };
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:
<c>var AValue : Cardinal;</c> <c>AValue := VLFreeFrame1.Vertion.Minor;</c>
C++ Builder example:
<c>unsigned int AValue = VLFreeFrame1->Vertion->Minor;</c>
Visual C++(MFC) example:
<c>unsigned int AValue = VLFreeFrame1.Vertion.Minor;</c>
Visual C++/CLI example:
<c>unsigned int value = freeFrame1->Vertion->Minor;</c>
C# example:
<c>UInt32 value = freeFrame1.Vertion.Minor;</c>
VB example:
<c>Dim AValue As UInt32 = FreeFrame1.Vertion.Minor</c>