Read a property from current DVD. This method can return current DVD position and some other properties like number of titles and chapters.

"NumOfVolumes" : Returns number of volumes

"Volume" : Returns current used volume

"Side" : Returns current side (1 or 2)

"NumOfTitles" : Returns number of titles

"DiscID" : Returns system-generated 64-bit "unique" identification number for the specified DVD

"NumOfChapters" : Returns number of chapters of the specified title (specify title in SubProp parameter)

"Title" : Returns current title

"Chapter" : Returns current chapter

"Time" : Returns current time using format like "HH:MM:SS:FF", where FF is frame in current second.

"TotalTitleTime" : Retrieves the total playback time for the current title.

Namespace: HiComponents.IEvolution
Assembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public string DVDGetProperty(
	string prop,
	string subProp
)
Public Function DVDGetProperty ( _
	prop As String, _
	subProp As String _
) As String
public:
String^ DVDGetProperty(
	String^ prop, 
	String^ subProp
)

Parameters

prop
String
Property string as described above.
subProp
String
Optional subproperty string as described above

Return Value

Returns a string representing property value

See Also