Copyright © 2008-2026 MultiMedia Soft

SoundDirectionSet method

Previous pageReturn to chapter overviewNext page

Remarks

 

Sets the sound's playback direction.

 

IMPORTANT: This method doesn't have any effect if reversed sound management has not been enabled by a previous call to the SoundDirectionEnable method.

 

The current playback direction can be obtained through the SoundDirectionGet method.

It's important to note that calling the StopSound method will reset the forward direction of the playing sound.

 

 

Syntax

 

[Visual Basic]

Public Function SoundDirectionSet (

nDirection as Int16

) as enumErrorCodes


 

[C#]

public enumErrorCodes SoundDirectionSet (

Int16 nDirection

);


 

[C++]

public: enumErrorCodes SoundDirectionSet (

Int16 nDirection

);


 

 

Parameter

Description

 

 

nDirection

he current playback direction.

Supported values are the following:

Mnemonic constant

Value

Meaning

DIRECTION_FORWARD

0

Sound is played in normal forward direction

DIRECTION_REVERSE

1

Sound is played in reverse direction

 

 

Return value

 

Value

Meaning

 

 

Negative value

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

enumErrorCodes.NOERROR (0)

The method call was successful.