BASS.NET API for the Un4seen BASS Audio LibraryBassDShowBASS_DSHOW_DVDSetProperty Method BASS.NET API for the Un4seen BASS Audio Library
Sets DVD properties.

Namespace: Un4seen.Bass.AddOn.DShow
Assembly: Bass.Net (in Bass.Net.dll) Version: 2.4.13.3
Syntax

[DllImportAttribute("xVideo", EntryPoint = "xVideo_DVDSetProperty")]
public static bool BASS_DSHOW_DVDSetProperty(
	int handle,
	BASSDSHOWDVDSetProperty prop,
	int newvalue
)

Parameters

handle
Type: SystemInt32
The DVD stream handle (as returned by BASS_DSHOW_StreamCreateDVD(String, IntPtr, BASSFlag)).
prop
Type: Un4seen.Bass.AddOn.DShowBASSDSHOWDVDSetProperty
One of the BASSDSHOWDVDSetProperty values.
newvalue
Type: SystemInt32
The new value to set (see remarks below).

Return Value

Type: Boolean
If an error occurred then is returned, else is returned (use BASS_DSHOW_ErrorGetCode to get the error code).
Remarks

See the BASSDSHOWDVDSetProperty options to know what parameters apply to newvalue.

Properties:

BASS_DSHOW_DVD_TITLEMENUGo to DVD title menu.

nothing: the newvalue parameter should always be 0(zero).

BASS_DSHOW_DVD_ROOTGo to DVD root.

nothing: the newvalue parameter should always be 0(zero).

BASS_DSHOW_DVD_NEXTCHAPTERPlay next chapter.

nothing: the newvalue parameter should always be 0(zero).

BASS_DSHOW_DVD_PREVCHAPTERPlay previous chapter.

nothing: the newvalue parameter should always be 0(zero).

BASS_DSHOW_DVD_TITLEPlays the specified title.

title (int): the title ID to play.

BASS_DSHOW_DVD_TITLECHAPTERPlays the specified chapter.

chapter (int): the chapter ID to play.

BASS_DSHOW_DVDCurrentTitlePositionSets the current title playing position.

position (int): the current title playing position in seconds to set.

See Also

Reference