[]
Gets whether this reference represents a range.
The default value is false. This property returns true when the
reference has the range attribute set. If the reference contains an error,
this property returns false.
public bool IsRange { get; set; }
Public Property IsRange As Boolean
Reference reference = new Reference();
reference.LastColumn = 1;
bool isRange = reference.IsRange;