Property VLAVIPlayer.TVLAVIPlayer.PlaySegment
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: TVLAVIPlayer
Contents |
Syntax
Delphi:
property PlaySegment : TVLAVIPlayerSegment read FPlaySegment write SetPlaySegment;
C++ Builder:
__property TVLAVIPlayerSegment * PlaySegment = { read=FPlaySegment, write=SetPlaySegment };
Summary
A segment of the video file to be played.
Description
Use this property to specify the segment of the Video file to
be played.
Delphi example:
VLAVIPlayer1.PlaySegment.StartSample := 100; VLAVIPlayer1.PlaySegment.StopSample := 300; VLAVIPlayer1.PlaySegment.Enabled := True;
C++ Builder example:
VLAVIPlayer1->PlaySegment->StartSample = 100; VLAVIPlayer1->PlaySegment->StopSample = 300; VLAVIPlayer1->PlaySegment->Enabled = true;
Visual C++(MFC) example:
VLAVIPlayer1.PlaySegment.StartSample = 100; VLAVIPlayer1.PlaySegment.StopSample = 300; VLAVIPlayer1.PlaySegment.Enabled = true;
Visual C++/CLI example:
aviPlayer1->PlaySegment->StartSample = 100; aviPlayer1->PlaySegment->StopSample = 300; aviPlayer1->PlaySegment->Enabled = true;
C# example:
aviPlayer1.PlaySegment.StartSample = 100; aviPlayer1.PlaySegment.StopSample = 300; aviPlayer1.PlaySegment.Enabled = true;
VB example:
aviPlayer1.PlaySegment.StartSample = 100 aviPlayer1.PlaySegment.StopSample = 300 aviPlayer1.PlaySegment.Enabled = true