Remarks
Moves or resizes an enhanced spectrum analyzer.
For further details about using the Enhanced Spectrum Analyzer refer to the SpectrumEnh section.
For details about using the Enhanced Spectrum Analyzer refer to the How to use the Enhanced Spectrum Analyzer tutorial.
For details about using other embedded Visual Feedbacks refer to the How to use the embedded Visual Feedbacks section
Syntax
[Visual Basic]
control.SpectrumEnh.Move (
nLeft as Long,
nTop as Long,
nWidth as Long,
nHeight as Long
) as enumErrorCodes
|
|
[C++]
short control.SpectrumEnh.Move (
long nLeft,
long nTop,
long nWidth,
long nHeight
);
|
|
Parameter
|
Description
|
|
|
nLeft
|
Left position of the window, expressed in parent's client coordinates (pixels)
|
nTop
|
Top position of the window, expressed in parent's client coordinates (pixels)
|
nWidth
|
Width of the window, expressed in pixels
|
nHeight
|
Height of the window, expressed in pixels
|
Return value
Value
|
Meaning
|
|
|
Negative value
|
An error occurred, check the LastError property value in order to get the error code
|
enumErrorCodes.ERR_NOERROR (0)
|
The method call was successful
|
|