Method function VLDSVideoPlayer.TVLDSVideoPlayer.FrameStep(Cardinal) : Boolean
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: TVLDSVideoPlayer
Contents |
Syntax
Delphi:
function FrameStep( Frames : Cardinal ) : Boolean;
C++ Builder:
bool __fastcall FrameStep( unsigned int Frames );
Visual C++ (MFC):
bool FrameStep( unsigned int Frames );
Summary
Step number of frames. Parameters Frames : Number of frames to step forward.
Description
When the component is paused, you can step forward number of frames, if the video format supports frame stepping. Some video formats do not support this feature.
Delphi example:
VLDSVideoPlayer1.FrameStep( 10 );
C++ Builder example:
VLDSVideoPlayer1->FrameStep( 10 );
Visual C++(MFC) example:
VLDSVideoPlayer1.FrameStep( 10 );
Visual C++/CLI example:
dsVideoPlayer1->FrameStep( 10 );
C# example:
dsVideoPlayer1.FrameStep( 10 );
VB example:
DSVideoPlayer1.FrameStep( 10 )