Property VLFreeFrame.TVLFreeFrame.OptimizedFor
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 OptimizedFor : TVLFFOptimizedFor read FOptimizedFor;
C++ Builder:
__property TVLFFOptimizedFor OptimizedFor = { read=FOptimizedFor };
Summary
Returns FreeFrame filter optimizations.
Description
Use this property to get the FreeFrame filter optimizations.
Delphi example:
var AValue : TVLFFOptimizedFor; AValue := VLFreeFrame1.MinorVertion;
C++ Builder example:
TVLFFOptimizedFor AValue = VLFreeFrame1->MinorVertion;
Visual C++(MFC) example:
CTVLFFOptimizedFor AValue = VLFreeFrame1.MinorVertion;
Visual C++/CLI example:
Mitov::VideoLab::FFOptimizedFor value = freeFrame1->MinorVertion;
C# example:
Mitov.VideoLab.FFOptimizedFor value = freeFrame1.MinorVertion;
VB example:
Dim AValue As Mitov.VideoLab.FFOptimizedFor = FreeFrame1.MinorVertion