|
Copyright © 2006 - 2008 MultiMedia Soft
Return to Table of contents
|
|
[Visual Basic]
Public Function EnableOutputDevice (
nOutputIndex as Int16,
bEnable as bool
) as enumErrorCodes
|
|
[C#]
public enumErrorCodes EnableOutputDevice (
Int16 nOutputIndex,
bool bEnable
);
|
|
[C++]
public: enumErrorCodes EnableOutputDevice (
Int16 nOutputIndex,
bool bEnable
);
|
|
Parameter
|
Description
| ||||||
|
|
| ||||||
|
nOutputIndex
|
Number representing the zero-based index of the output device which needs to be enabled/disabled
| ||||||
|
bEnable
|
Boolean value that tells if the given output device must be enabled or disabled.
Supported values are the following:
|
|
Value
|
Meaning
|
|
|
|
|
Negative value
|
An error occurred. Check the LastError property value in order to see the last error.
|
|
enumErrorCodes.ERR_NOERROR (0)
|
The method call was successful.
|