Remarks
Loads a sound from an instance of the Audio Sound Editor for .NET control.
Syntax
[Visual Basic]
Public Function LoadSoundFromEditingSession (
nPlayerIndex as Int16,
hWndEditorCtrl as IntPtr
) as enumErrorCodes
|
|
[C#]
public enumErrorCodes LoadSoundFromEditingSession (
Int16 nPlayerIndex,
IntPtr hWndEditorCtrl
);
|
|
[C++]
public: enumErrorCodes LoadSoundFromEditingSession (
Int16 nPlayerIndex,
IntPtr hWndEditorCtrl
);
|
|
Parameter
|
Description
|
|
|
nPlayerIndex
|
Number representing the zero-based index of the involved player
|
hWndEditorCtrl
|
Window handle to the instance of a Audio Sound Editor for .NET control
|
Return value
Value
|
Meaning
|
|
|
enumErrorCodes.NOERROR (0)
|
The song file has been loaded successfully.
|
Negative value
|
An error occurred: see the LastError property for further error details or for a list of the possible error values.
|
|