[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Expressions.Reference.IsRange

IsRange Property

IsRange

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.

Declaration
public bool IsRange { get; set; }
Public Property IsRange As Boolean
Examples
Reference reference = new Reference();
reference.LastColumn = 1;
bool isRange = reference.IsRange;