DVDTitle
property
Delphi
property DVDTitle: LongInt read GetDVDTitle write SetDVDTitle default DEF_DVDTitle;
C++Builder
__property System::LongInt DVDTitle = {read=GetDVDTitle, write=SetDVDTitle, default=0};
C#
public int DVDTitle { get; set; }
VB.NET
Public Property DVDTitle As Integer
C++/Qt
int GetDVDTitle ();
void SetDVDTitle (int Value);
Used to specify a DVD title to play, starting from 1.
If DVDTitle = 0 (default) the DVD menu is shown when invoking OpenPlayer.
E.g.:
VideoGrabber.PlayerFileName = "E:VIDEO_TS" VideoGrabber.DVDTitle = 0 VideoGrabber.OpenPlayer ()
If DVDTitle > 0 the corresponding DVD title is played immediately.
E.g.:
VideoGrabber.PlayerFileName = "E:VIDEO_TS" VideoGrabber.DVDTitle = 1 VideoGrabber.OpenPlayer ()