Property VLDSVideoPlayer.TVLDSVideoPlayer.CanStepFrames
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:
property CanStepFrames : Cardinal read GetCanFrameStep;
C++ Builder:
__property unsigned int CanStepFrames = { read=GetCanFrameStep };
Summary
The number of frames the video can step forward at a time
Description
Use this property to get the number of frames the video can
step forward at a time. If zero the player can't perform step
operations.
Delphi example:
AValue : Cardinal; AValue := VLDSVideoPlayer1.CanStepFrames;
C++ Builder example:
unsigned int AValue = VLDSVideoPlayer1->CanStepFrames;
Visual C++(MFC) example:
unsigned int AValue = VLDSVideoPlayer1.CanStepFrames;
Visual C++/CLI example:
unsigned int value = dsVideoPlayer1->CanStepFrames;
C# example:
UInt32 value = dsVideoPlayer1.CanStepFrames;
VB example:
Dim value As UInt32 = DSVideoPlayer1.CanStepFrames