[]
Represents a defined name for a range of cells.
public interface IName
Gets or sets the comment associated with the name (read or write).
string Comment { get; set; }
Gets or sets the name of the object.
string Name { get; set; }
Gets or sets the formula that the name is defined to refer to, in the language of the macro and in A1-style notation, beginning with an equal sign.
string RefersTo { get; set; }
Gets or sets the formula that the name is defined to refer to, in the language of the macro and in R1C1-style notation, beginning with an equal sign.
string RefersToR1C1 { get; set; }
Deletes the object.
void Delete()
Generates the defined name from the JSON string.
void FromJson(string json)
json
stringthe JSON string that contains a defined name
Generates the JSON string from the defined name.
string ToJson()
The JSON string.