Class DefinedName
Represents a named formula or range reference that can be scoped to a workbook or worksheet, providing reusable expressions for cells.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.Model
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class DefinedName : ISpreadsheetName, ICopyable<ISpreadsheetName>
Properties
Comment
Gets the optional descriptive comment explaining the purpose of this name.
Declaration
public string Comment { get; }
Property Value
|
System.String
The comment. |
Implements
IsVisible
Gets whether this name appears in the user interface name lists.
Declaration
public bool IsVisible { get; }
Property Value
|
System.Boolean
The value indicating whether the name is visible to the user. |
Implements
Name
Gets the unique identifier for this defined name within its scope.
Declaration
public string Name { get; }
Property Value
|
System.String
The name. |
Implements
RefersTo
Gets the formula expression this name references, formatted as a string.
Declaration
public string RefersTo { get; }
Property Value
|
System.String
The string representation of the object the name refers to. |
Implements
Scope
Gets the scope defining whether this name is workbook-global or worksheet-specific.
Declaration
public SpreadsheetNameCollectionScope Scope { get; }
Property Value
|
SpreadsheetNameCollectionScope
The scope. |
Implements
Value
Gets the evaluated result of the formula as a string representation.
Declaration
public string Value { get; }
Property Value
|
System.String
The value. |