[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Expressions.Reference.HasRow

HasRow Property

HasRow

Gets whether the reference includes a row part.

This property indicates whether the reference contains row information. The default value is true. If the reference is in an error state, this property returns false.

Declaration
public bool HasRow { get; set; }
Public Property HasRow As Boolean
Examples
Reference reference = new Reference();
reference.HasRow = false;
bool hasRow = reference.HasRow;