New to Telerik Document ProcessingStart a free 30-day trial

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:

C#
public class DefinedName : ISpreadsheetName

Inheritance: objectDefinedName

Implements: ISpreadsheetName

Properties

Gets the optional descriptive comment explaining the purpose of this name.

C#
public string Comment { get; }
Property Value:

The comment.

Implements: ISpreadsheetName.Comment

Gets whether this name appears in the user interface name lists.

C#
public bool IsVisible { get; }
Property Value:

The value indicating whether the name is visible to the user.

Implements: ISpreadsheetName.IsVisible

Gets the unique identifier for this defined name within its scope.

C#
public string Name { get; }
Property Value:

The name.

Implements: ISpreadsheetName.Name

Gets the formula expression this name references, formatted as a string.

C#
public string RefersTo { get; }
Property Value:

The string representation of the object the name refers to.

Implements: ISpreadsheetName.RefersTo

Gets the scope defining whether this name is workbook-global or worksheet-specific.

C#
public SpreadsheetNameCollectionScope Scope { get; }
Property Value:

The scope.

Implements: ISpreadsheetName.Scope

Gets the evaluated result of the formula as a string representation.

C#
public string Value { get; }
Property Value:

The value.

Implements: ISpreadsheetName.Value