:: com :: sun :: star :: util ::

interface XSortable
Developers Guide
Text - Sorting Text

Methods' Summary
createSortDescriptor  
sort sorts the contents of the object according to the specified properties.  
Methods' Details
createSortDescriptor
sequence< ::com::sun::star::beans::PropertyValue >
createSortDescriptor();

Returns
a sequence of properties which allows to specify/modify the sort criteria.

The set of properties is specific to the type of object that implements this interface. Therefore they can usually be used only for objects of that same type.

See also
SortDescriptor, ::com::sun::star::table::TableSortDescriptor, ::com::sun::star::text::TextSortDescriptor, SortDescriptor2, ::com::sun::star::table::TableSortDescriptor2, ::com::sun::star::text::TextSortDescriptor2
sort
void
sort( [in] sequence< ::com::sun::star::beans::PropertyValue >  xDescriptor );

Description
sorts the contents of the object according to the specified properties.

The specified properties are usually the same or a subset of those obtained by calling createSortDescriptor on the same type of object.

See also
SortDescriptor, ::com::sun::star::table::TableSortDescriptor, ::com::sun::star::text::TextSortDescriptor, SortDescriptor2, ::com::sun::star::table::TableSortDescriptor2, ::com::sun::star::text::TextSortDescriptor2
Top of Page