Property VLDSVideoPlayer.TVLDSVideoPlayer.CurrentFrame

From Mitov Wiki Doc
Jump to: navigation, search

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 CurrentFrame : Int64 read GetCurrentFrame write SetCurrentFrame;

C++ Builder:

__property __int64 CurrentFrame = { read=GetCurrentFrame, write=SetCurrentFrame };

Summary

Current frame being played.

Description

Use this property to get or set the number of the current frame being played by the player.


Delphi example:

AValue : Int64;

AValue := VLDSVideoPlayer1.CurrentFrame;

C++ Builder example:

__int64 AValue = VLDSVideoPlayer1->CurrentFrame;

Visual C++(MFC) example:

__int64 AValue = VLDSVideoPlayer1.CurrentFrame;

Visual C++/CLI example:

Int64 value = dsVideoPlayer1->CurrentFrame;

C# example:

Int64 value = dsVideoPlayer1.CurrentFrame;

VB example:

Dim Value as Int64 = DSVideoPlayer1.CurrentFrame

Note Not all of the DirectShow players support changing the current frame.

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox