:: com :: sun :: star :: inspection ::

interface XStringListControl
Base Interfaces
XStringListControlXPropertyControl

XPropertyControl

Methods' Summary
clearList clears the whole list  
prependListEntry prepends a new entry to the beginning of the list  
appendListEntry appends a new entry to the end of the list  
getListEntries gets all list entries  
Methods' Details
clearList
void
clearList();

Description
clears the whole list
prependListEntry
void
prependListEntry( [in] string  NewEntry );

Description
prepends a new entry to the beginning of the list
appendListEntry
void
appendListEntry( [in] string  NewEntry );

Description
appends a new entry to the end of the list
getListEntries
sequence< string >
getListEntries();

Description
gets all list entries
Top of Page