Copyright © 2005-2019 MultiMedia Soft

MIDI.SoundFontVolumeSet method

Previous pageReturn to chapter overviewNext page

Remarks

 

Modifies the volume level of the given MIDI SoundFont. The current volume level can be obtained through the MIDI.SoundFontVolumeGet method.

 

For further details about the use of MIDI protocol see the MIDIMan class section and the How to deal with MIDI protocol tutorial.

 

 

Syntax

 

[Visual Basic]

Public Function SoundFontVolumeSet (

nPlayerIndex as Int16,

fVolume as Single

) as enumErrorCodes


 

[C#]

public enumErrorCodes SoundFontVolumeSet (

Int16 nPlayerIndex,

float fVolume

);


 

[C++]

public: enumErrorCodes SoundFontVolumeSet (

Int16 nPlayerIndex,

float fVolume

);


 

 

 

Parameter

Description

 

 

nUniqueId

Number representing the unique identifier of the MIDI SoundFont as returned by a previous call to one between the MIDI.SoundFontInit or MIDI.SoundFontInitFromMemory or MIDI.SoundFontInitFromMemory methods.

fVolume

The SoundFont volume expressed in percentage

 

 

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.