Copyright © 2008-2019 MultiMedia Soft
UndoEnable method
Remarks
Enables/disables Undo operation. When the Undo is enabled the application will require a bigger amount of system memory in order to store previous sound contents.
Syntax
[Visual Basic]
Public Function UndoEnable (
bEnable as Boolean
) as enumErrorCodes
[C#]
public enumErrorCodes UndoEnable (
bool bEnable
);
[C++]
public: enumErrorCodes UndoEnable (
Parameter
Description
bEnable
Boolean value that specifies if Undo is enabled.
Supported values are the following:
Value
Meaning
false (default)
Undo is disabled
true
Undo is enabled
Return value
Negative value
An error occurred (see the LastError property for further error details)
enumErrorCodes.ERR_NOERROR (0)
The method call was successful.