Remarks
Adds a song (item) to the list of delayed playbacks.
For details about management of delayed playbacks refer to the How to manage delayed playbacks tutorial.
Syntax
[Visual Basic]
control.DelayedPlayback.ListAddItemByDate (
nPlayer as Integer,
strPathname as String,
nYear as Long,
nMonth as Long,
nDay as Long,
nHour as Long,
nMinute as Long,
nSecond as Long
) as Long
|
|
[C++]
long control.DelayedPlayback.ListAddItemByDate (
short nPlayer,
LPCTSTR strPathname,
long nYear,
long nMonth,
long nDay,
long nHour,
long nMinute,
long nSecond
);
|
|
Parameter
|
Description
|
|
|
nPlayer
|
Number representing the zero-based index of the involved player
|
strPathname
|
String containing the absolute pathname of the element to add. If this string is left empty, the current sound or video clip loaded into the given player will be added.
|
nYear
|
Number representing the year
|
nMonth
|
Number representing the month
|
nDay
|
Number representing the day of the month
|
nHour
|
Number representing the hour of the day
|
nMinute
|
Number representing the minute of the hour
|
nSecond
|
Number representing the second of the minute
|
Return value
Value
|
Meaning
|
|
|
0
|
An error occurred (see the LastError property for further error details)
|
Other values
|
Unique identifier of the file that will have a delayed playback
|
|