Search
NamedRange.setName Method
See Also
 






Sets the name of the named range.

Namespace: com.mindfusion.spreadsheet
Package: com.mindfusion.spreadsheet

 Syntax

Java  Copy Code

public void setName (
    String value
)

 Parameters

value

 Remarks

The name of a named range must be unique (ignoring case) amongst all named ranges in a Workbook. It must not be a valid cell or cell range reference (for example, A1). It needs to be a proper identifier, that is, it must start with a letter and contain only letters, numbers and underscore characters. Lastly, the name must not coincide with the built-in identifiers 'true' and 'false'. If any of these requirements are violated, an exception will be thrown.

 See Also