Remarks
Loads graphic items from a XML memory stream and add them to the waveform analyzer.
For details about graphic items management on the waveform analyzer refer to the How to add graphic items to the Waveform analyzer section.
Syntax
[Visual Basic]
control.GraphicItemsLoadFromMemory (
pBuffer as variant,
nBufferLength as long
) as enumWanErrorCodes
|
|
[C++]
short control.GraphicItemsLoadFromMemory (
const VARIANT FAR& pBuffer,
long nBufferLength
);
|
|
Parameter
|
Description
|
|
|
pBuffer
|
Input buffer containing the graphic items in XML format.
|
nBufferLength
|
Length of the input buffer expressed in bytes
|
Return value
Value
|
Meaning
|
|
|
Negative value
|
An error occurred (see the LastError property for further error details)
|
enumWanErrorCodes.ERR_WAN_NOERROR (0)
|
The method call was successful.
|
|