Property VLFreeFrame.TVLFreeFrame.OptimizedFor
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
||
Line 33: | Line 33: | ||
var AValue : [[Enum VLFreeFrame.TVLFFOptimizedFor|TVLFFOptimizedFor]]; | var AValue : [[Enum VLFreeFrame.TVLFFOptimizedFor|TVLFFOptimizedFor]]; | ||
− | AValue := VLFreeFrame1 | + | AValue := VLFreeFrame1.MinorVertion; |
</code> | </code> | ||
Line 39: | Line 39: | ||
<code> | <code> | ||
− | [[Enum VLFreeFrame.TVLFFOptimizedFor|TVLFFOptimizedFor]] AValue = VLFreeFrame1-> | + | [[Enum VLFreeFrame.TVLFFOptimizedFor|TVLFFOptimizedFor]] AValue = VLFreeFrame1->MinorVertion; |
</code> | </code> | ||
Line 45: | Line 45: | ||
<code> | <code> | ||
− | CTVLFFOptimizedFor AValue = VLFreeFrame1 | + | CTVLFFOptimizedFor AValue = VLFreeFrame1.MinorVertion; |
</code> | </code> | ||
Line 51: | Line 51: | ||
<code> | <code> | ||
− | Mitov::VideoLab::FFOptimizedFor value = freeFrame1-> | + | Mitov::VideoLab::FFOptimizedFor value = freeFrame1->MinorVertion; |
</code> | </code> | ||
Line 57: | Line 57: | ||
<code> | <code> | ||
− | Mitov.VideoLab.FFOptimizedFor value = freeFrame1 | + | Mitov.VideoLab.FFOptimizedFor value = freeFrame1.MinorVertion; |
</code> | </code> | ||
Line 63: | Line 63: | ||
<code> | <code> | ||
− | Dim AValue As Mitov.VideoLab.FFOptimizedFor = FreeFrame1 | + | Dim AValue As Mitov.VideoLab.FFOptimizedFor = FreeFrame1.MinorVertion |
</code> | </code> |
Revision as of 20:29, 10 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: 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