Copyright © 2001-2019 MultiMedia Soft

DelayedPlayback.ItemGetFadeTime method

Previous pageReturn to chapter overviewNext page

Remarks

 

Obtains the fading times applied during start and end of playback of the given file. The current fading time can be modified through the DelayedPlayback.ItemSetFadeTime method.

 

For details about management of delayed playbacks refer to the How to manage delayed playbacks tutorial.

 

 

Syntax

 

[Visual Basic]

control.DelayedPlayback.ItemGetFadeTime (

nFileUniqueID as Long,

nFadeInLength as Long,

nFadeOutLength as Long

) as enumErrorCodes


 

[C++]

long control.DelayedPlayback.ItemGetFadeTime (

long nFileUniqueID,

long *nFadeInLength,

long *nFadeOutLength

);


 

 

Parameter

Description

 

 

nFileUniqueID

Number representing the unique identifier of the file as returned by the DelayedPlayback,ListAddItem method

nFadeInLength

Reference that, on return from the method call, will contain the fade-in time length expressed in milliseconds

nFadeOutLength

Reference that, on return from the method call, will contain the fade-out time length expressed in milliseconds

 

 

Return value

 

Value

Meaning

 

 

Negative value

An error occurred (see the LastError property for further error details)

enumErrorCodes.ERR_NOERROR (0)

The call was successful.