:: com :: sun :: star :: chart2 ::

unpublished interface XDataSequence
Description
allows acces to a one-dimensional sequence of data.

The data that is stored in this container may contain different types.


Methods' Summary
getData retrieves the data stored in this component.  
getSourceIdentifier contains information by which the provider of the data is able to locate its source.  
Methods' Details
getData
sequence< any >
getData();

Description
retrieves the data stored in this component.
Returns
a sequence containing the actual data. This sequence is a copy of the internal data. Therefore changing this object does not affect the content of the XDataSequence object.
getSourceIdentifier
string
getSourceIdentifier();

Description
contains information by which the provider of the data is able to locate its source.

You can get the component that can handle this string by calling XDataSequence::getServerComponent .

This may be a range string in the spreadsheet-specific format, like "$A$1:$C$7$quot;, if the XDataSequence::getServerComponent is a component that can handle spreadsheet ranges.

You do not have to care about the content of this string. Its purpose is just to indicate the location of the data to the XDataSequence::getServerComponent and to make this data persisten in the model.

Top of Page