Property Getters/Setters Summary | ||
---|---|---|
function | getCount() | |
function | get(index) | |
Gets the |
||
function | get(text) | |
Gets the |
Method Summary | ||
---|---|---|
function | add(value) | → inherited from CollectionBase |
Reserved for internal use. | ||
function | add(text) | |
Defines a new name. | ||
function | clear() | |
Remove all defined names which are not referenced by the formulas and data source. If the defined name is refered, we only set Name.ReferTo as null and hide them. | ||
function | contains(value) | → inherited from CollectionBase |
Reserved for internal use. | ||
function | get(index) | → inherited from CollectionBase |
Reserved for internal use. | ||
function | indexOf(value) | → inherited from CollectionBase |
Reserved for internal use. | ||
function | iterator() | → inherited from CollectionBase |
function | remove(text) | |
Remove the name. | ||
function | remove(names) | |
Remove an array of name | ||
function | removeAt(index) | |
Remove the name at the specific index. | ||
function | removeDuplicateNames() | |
Remove the duplicate defined names | ||
function | sort() | |
Sorts defined names. |
Property Getters/Setters Detail |
---|
getCount : Number | |
function getCount() |
get : Name | |
function get(index) |
index
- The zero based index of the element.get : Name | |
function get(text) |
text
- Name text.Method Detail |
---|
add | |
function add(text) |
text: String
- The text to use as the name.remove | |
function remove(names) |
names: String[]
- The names' text.remove | |
function remove(text) |
text: String
- The name text.removeAt | |
function removeAt(index) |
index: Number
- index of the Name to be removed.clear | |
function clear() |
removeDuplicateNames | |
function removeDuplicateNames() |
sort | |
function sort() |
iterator | |
function iterator() |
get | |
function get(index) |
contains | |
function contains(value) |
add | |
function add(value) |
indexOf | |
function indexOf(value) |