ISpreadsheetName
Interface
Defines core properties for a named formula or range reference within a spreadsheet.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Model
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
C#
public interface ISpreadsheetName
Derived Classes:
Properties
Gets the descriptive comment explaining the purpose of this name.
C#
string Comment { get; }
The comment.
Gets whether this name appears in the user interface name lists.
C#
bool IsVisible { get; }
The value indicating whether the name is visible to the user.
Gets the unique identifier for this named reference within its scope.
C#
string Name { get; }
The name.
Gets the formula or range reference this name points to, formatted as a string.
C#
string RefersTo { get; }
The string representation of the object the name refers to.
Gets the scope defining whether this name applies workbook-wide or to a specific worksheet.
C#
SpreadsheetNameCollectionScope Scope { get; }
The scope.