Property VLDelay.TVLDelay.FrameDelay
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: TVLDelay
Contents |
Syntax
Delphi:
property FrameDelay : Integer read FFrameDelay write SetFrameDelay default 30;
C++ Builder:
__property int FrameDelay = { read=FFrameDelay, write=SetFrameDelay, default=30 };
Summary
Delay in number of frames.
Description
Use this property to specify the video delay in number of
frames.
Delphi example:
VLDelay1.FrameDelay := 10;
C++ Builder example:
VLDelay1->FrameDelay = 10;
Visual C++(MFC) example:
VLDelay1.FrameDelay = 10;
Visual C++/CLI example:
delay1->FrameDelay = 10;
C# example:
delay1.FrameDelay = 10;
VB example:
Delay1.FrameDelay = 10