java.lang.Objectcom.aspose.words.SdtListItemCollection
public class SdtListItemCollection
Property Getters/Setters Summary | ||
---|---|---|
int | getCount() | |
Gets number of items in the collection. | ||
SdtListItem | getSelectedValue() | |
void | setSelectedValue(SdtListItem value) | |
Specifies currently selected value in this list. Null value allowed, meaning that no currently selected entry is associated with this list item collection. | ||
SdtListItem | get(int index) | |
Returns a |
Method Summary | ||
---|---|---|
void | add(SdtListItem item) | |
Adds an item to this collection. | ||
void | clear() | |
Clears all items from this collection. | ||
java.util.Iterator | iterator() | |
Returns an iterator object that can be used to iterate over all items in the collection. | ||
void | removeAt(int index) | |
Removes a list item at the specified index. |
Property Getters/Setters Detail |
---|
getCount | |
public int getCount() |
getSelectedValue/setSelectedValue | |
public SdtListItem getSelectedValue() / public void setSelectedValue(SdtListItem value) |
get | |
public SdtListItem get(int index) |
Method Detail |
---|
add | |
public void add(SdtListItem item) |
clear | |
public void clear() |
iterator | |
public java.util.Iterator iterator() |
removeAt | |
public void removeAt(int index) |
index
- The zero-based index of the item to remove.