Remarks
Copies the given sound range into the system clipboard.
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 CopyRangeToClipboard (
nStartPosition as Int32,
nEndPosition as Int32
) as enumErrorCodes
|
|
[C#]
public enumErrorCodes CopyRangeToClipboard (
Int32 nStartPosition,
Int32 nEndPosition
);
|
|
[C++]
public: enumErrorCodes CopyRangeToClipboard (
Int32 nStartPosition,
Int32 nEndPosition
);
|
|
Parameter
|
Description
|
|
|
nStartPosition
|
Start position, expressed in milliseconds, of the sound range to copy to clipboard
|
nEndPosition
|
End position, expressed in milliseconds, of the sound range to copy to clipboard. If set to -1 the end position will be set to the end of the sound.
|
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.
|
|