:: com :: sun :: star :: sheet ::

interface XMembersAccess
Base Interfaces
XMembersAccess
┗ ::com::sun::star::container::XNameAccess
   ┗ ::com::sun::star::container::XElementAccess

::com::sun::star::container::XNameAccess
(referenced interface's summary:)

Methods' Summary
getLocaleIndependentElementNames returns names of data pilot members in a locale independent notation.  
Methods' Details
getLocaleIndependentElementNames
sequence< string >
getLocaleIndependentElementNames();

Description
returns names of data pilot members in a locale independent notation.

Specifically date values are represented in an ISO 8601 YYYY-MM-DD notation and date+time as YYYY-MM-DD HH:MM:SS, whereas the strings returned by com::sun::star::container::XNameAccess::getElementNames() may represent these in a locale dependent or user formatted notation such as MM/DD/YY or DD.MM.YYYY or other.

The names returned by this function can NOT be used in calls to com::sun::star::container::XNameAccess::getByName(). However, the order returned in two immediately consecutive calls to getElementNames() and getLocaleIndependentElementNames() maps to the same elements in order.

Returns
a sequence of all element names in this container.
Top of Page