Constructor and Description |
---|
NumberFormatList(Measure measure)
Constructor for NumberFormatList.
|
Modifier and Type | Method and Description |
---|---|
void |
add(Measure.NumberFormat value)
Adds number format to list.
|
Measure.NumberFormat |
get_Item(int index)
Gets number format in list by its index.
|
int |
getCount()
Count if items in the list.
|
void |
insert(int index,
Measure.NumberFormat value)
Inserts number format into list.
|
void |
removeAt(int index)
Removes number format from list.
|
void |
set_Item(int index,
Measure.NumberFormat value)
Sets number format in list by its index.
|
public NumberFormatList(Measure measure)
Constructor for NumberFormatList.
measure
- Parent measure object.public void add(Measure.NumberFormat value)
Adds number format to list.
value
- Value to be added into list.public void insert(int index, Measure.NumberFormat value)
Inserts number format into list.
index
- Index where new element will be added.value
- Value to be inserted.public void removeAt(int index)
Removes number format from list.
index
- Index of item to be removed.public Measure.NumberFormat get_Item(int index)
Gets number format in list by its index.
index
- Index of the item to be retreived.public void set_Item(int index, Measure.NumberFormat value)
Sets number format in list by its index.
index
- Index of the item to be retreived.value
- measure item.public int getCount()
Count if items in the list.