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