ClassDefinedName
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
Comment
Gets the optional descriptive comment explaining the purpose of this name.
Declaration
public string Comment { get; }
Property Value
The comment.
Implements
IsVisible
Gets whether this name appears in the user interface name lists.
Declaration
public bool IsVisible { get; }
Property Value
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
The name.
Implements
RefersTo
Gets the formula expression this name references, formatted as a string.
Declaration
public string RefersTo { get; }
Property Value
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