DefinedNameCollection

DefinedNameCollection

Overview

DefinedNameCollection is a class in Aspose.Cells FOSS for Java. Inherits from: Iterable<DefinedName>.

Represents a collection of defined names in a workbook.

This class provides 5 methods for working with DefinedNameCollection objects in Java programs. Available methods include: add, get, getCount, iterator, removeAt. All exported members are accessible to any Java application after installing the Aspose.Cells FOSS for Java package. Properties: count.

Properties

NameTypeAccessDescription
countintReadReturns the count.

Methods

SignatureDescription
getCount()intReturns the count.
get(index: int)DefinedNameReturns the requested item.
add(name: String, formula: String)intAdds a new item to the current collection.
add(name: String, formula: String, localSheetIndex: Integer)intAdds a new item to the current collection.
removeAt(index: int)Removes at.
iterator()Iterator<DefinedName>Returns an iterator over the current collection.

See Also