MediaType Property
The MediaType property contains the type of the current media.
Syntax
[long=] SiteKiosk.CDRecording.MediaType
|
Possible Values
Long value that retrieves the media type.
|
The property is read only.
Remarks
Possible media types are:
MEDIA_CDDA_CDROM = 1
MEDIA_CD_ROM_XA = 2
MEDIA_CD_I = 3
MEDIA_CD_EXTRA = 4
MEDIA_CD_OTHER = 5
MEDIA_SPECIAL = 6
Use the UpdateMediaInfo method to update this property.
Examples
The following example shows the media type in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.CDRecording.MediaType);
</SCRIPT>
|
Applies to
SiteKiosk v6.0 (and later versions).
Back to top