Remarks
Requests to insert a portion of silence inside the recorded sound.
A successful call to this method will fire the SoundEditStarted event. Once this editing operation has been performed completely, the control will fire the SoundEditDone event.
For further details about recorded sound methods refer to the RecordedSound class section.
For further details see the How to perform a recording session section.
Syntax
[Visual Basic]
Public Function RequestInsertSilence (
nStartPosition as Int32,
nSilenceLength as Int32
) as enumErrorCodes
|
|
[C#]
public enumErrorCodes RequestInsertSilence (
Int32 nStartPosition,
Int32 nSilenceLength
);
|
|
[C++]
public: enumErrorCodes RequestInsertSilence (
Int32 nStartPosition,
Int32 nSilenceLength
);
|
|
Parameter
|
Description
|
|
|
nStartPosition
|
Start position, expressed in milliseconds, where the portion of silence will be inserted
|
nSilenceLength
|
Silence length, expressed in milliseconds
|
Return value
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.
|
|