Property VLRealToFrame.TVLRealToFrame.FramePerSec
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: TVLRealToFrame
Contents |
Syntax
Delphi:
property FramePerSec : Cardinal read FFramepersec write Set_Framepersec default 30;
C++ Builder:
__property unsigned int FramePerSec = { read=FFramepersec, write=Set_Framepersec, default=30 };
Summary
Desired output frame rate.
Description
Use this property to specify the desired output frame rate.
Delphi example:
VLRealToFrame1.FramePerSec := 30;
C++ Builder example:
VLRealToFrame1->FramePerSec = 30;
Visual C++(MFC) example:
VLRealToFrame1.FramePerSec = 30;
Visual C++/CLI example:
realToFrame1->FramePerSec = 30;
C# example:
realToFrame1.FramePerSec = 30;
VB example:
RealToFrame1.FramePerSec = 30