8using FormatException =
NanoXLSX.Exceptions.FormatException;
20 public string Name {
get;
private set; }
30 internal string RelationshipId {
get;
set; }
51 if (
string.IsNullOrWhiteSpace(name))
53 throw new FormatException(
"The defined name must not be null or empty.");
55 if (validateRefersTo &&
string.IsNullOrWhiteSpace(refersTo))
57 throw new FormatException(
"The defined name reference must not be null or empty.");
string RefersTo
Gets the referenced expression.
ExternalDefinedName(string name, string refersTo)
Constructor of an external defined name.
string Name
Gets the name of the external defined name.