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

unpublished interface XRangeXMLConversion
Usage Restrictions
not published
Description
An application that provides data for a chart must implement this interface.

Methods' Summary
convertRangeToXML converts the range to a valid XML syntax.  
convertRangeFromXML converts an XML-style range into the internal DataProvider's format.  
Methods' Details
convertRangeToXML
string
convertRangeToXML( [in] string  aRangeRepresentation )
raises( ::com::sun::star::lang::IllegalArgumentException );

Description
converts the range to a valid XML syntax.

For example spreadsheet ranges consisting of more than one consecutive region are usually separated by a semicolon whereas in XML you separate multiple regions by a spacce.

convertRangeFromXML
string
convertRangeFromXML( [in] string  aXMLRange )
raises( ::com::sun::star::lang::IllegalArgumentException );

Description
converts an XML-style range into the internal DataProvider's format.
Top of Page