return _definedNameRec.isFunctionName();
}
+ /**
+ * Checks if this name is hidden, eg one of the built-in Excel
+ * internal names
+ *
+ * @return true if this name is a hidden one
+ */
+ public boolean isHidden() {
+ return _definedNameRec.isHiddenName();
+ }
+
public String toString() {
return getClass().getName() + " [" +
_definedNameRec.getNameText() +
*/
boolean isDeleted();
+ /**
+ * Checks if this name is hidden, eg one of the built-in Excel
+ * internal names
+ *
+ * @return <code>true</code> if the name is a hidden name, <code>false</code> otherwise
+ */
+ boolean isHidden();
+
/**
* Tell Excel that this name applies to the worksheet with the specified index instead of the entire workbook.
*
return getFunction();
}
+ /**
+ * Checks if this name is hidden, eg one of the built-in Excel
+ * internal names
+ *
+ * @return true if this name is a hidden one
+ */
+ public boolean isHidden() {
+ return _ctName.getHidden();
+ }
+
/**
* Returns the comment the user provided when the name was created.
*