Property VLASFPlayer.TVLASFPlayer.CurrentFrame
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: TVLASFPlayer
Contents |
Syntax
Delphi:
property CurrentFrame : Int64 read GetCurrentFrame write SetCurrentFrame;
C++ Builder:
__property __int64 CurrentFrame = { read=GetCurrentFrame, write=SetCurrentFrame };
Summary
Current video frame recorded.
Description
Use this property to get or set the current video frame
recorded.
Delphi example:
<c>AValue : Int64;</c> <c>AValue := VLASFLogger1.CurrentFrame;</c>
C++ Builder example:
<c>__int64 AValue = VLASFLogger1->CurrentFrame;</c>
Visual C++(MFC) example:
<c>__int64 AValue = VLASFLogger1.CurrentFrame;</c>
C# example:
<c>Int64 value = asfLogger1.CurrentFrame;</c>
Note Not all of the DirectShow players support changing the current frame.