DefinedName

Overview

DefinedName is a class in Aspose.Cells FOSS for Java.

Represents a defined name in the workbook.

This class provides 10 methods for working with DefinedName objects in Java programs. Available methods include: getComment, getFormula, getLocalSheetIndex, getName, isHidden, setComment, setFormula, setHidden, setLocalSheetIndex, setName. All exported members are accessible to any Java application after installing the Aspose.Cells FOSS for Java package. Properties: comment, formula, hidden, localSheetIndex, name.

Properties

NameTypeAccessDescription
nameStringReadReturns the name.
formulaStringReadReturns the formula.
localSheetIndexIntegerReadReturns the local sheet index.
hiddenbooleanReadReturns the hidden.
commentStringReadReturns the comment.

Methods

SignatureDescription
getName()StringReturns the name.
setName(value: String)Sets the name.
getFormula()StringReturns the formula.
setFormula(value: String)Sets the formula.
getLocalSheetIndex()IntegerReturns the local sheet index.
setLocalSheetIndex(value: Integer)Sets the local sheet index.
isHidden()booleanReturns the hidden.
setHidden(value: boolean)Sets the hidden.
getComment()StringReturns the comment.
setComment(value: String)Sets the comment.

See Also