Property VLAxisCapture.TVLAxisCapture.FrameRate
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: TVLAxisCapture
Contents |
Syntax
Delphi:
property FrameRate : Real read FFrameRate write SetFrameRate default 15;
C++ Builder:
__property double FrameRate = { read=FFrameRate, write=SetFrameRate, default=15 };
Summary
Specifies frame rate.
Description
Use this property to specify the desired frame rate for the
capture.
Delphi example:
VLAxisCapture1.FrameRate := 30;
C++ Builder example:
VLAxisCapture1->FrameRate = 30;
Visual C++(MFC) example:
VLAxisCapture1.FrameRate = 30;
Visual C++/CLI example:
axisCapture1->FrameRate = 30;
C# example:
axisCapture1.FrameRate = 30;
VB example:
AxisCapture1.FrameRate = 30