[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Expressions.Reference.IsRowRelative

IsRowRelative Property

IsRowRelative

Gets whether the row part of this reference is relative.

This property indicates whether the row is stored as a relative reference rather than an absolute one. The default value is true. If this reference contains an error, this property returns false.

Declaration
public bool IsRowRelative { get; set; }
Public Property IsRowRelative As Boolean
Examples
Reference reference = new Reference();
reference.Row = 2;
reference.IsRowRelative = false;
bool isRowRelative = reference.IsRowRelative;