[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Expressions.Reference.IsLastRowRelative

IsLastRowRelative Property

IsLastRowRelative

Gets whether the last row in the reference is relative.

For a range reference, this property indicates whether the ending row is stored as a relative row reference. For a non-range reference, it returns the same value as IsRowRelative. If the reference contains an error, this property returns false.

Declaration
public bool IsLastRowRelative { get; set; }
Public Property IsLastRowRelative As Boolean
Examples
Reference reference = new Reference();
reference.LastRow = 1;
reference.IsLastRowRelative = false;
bool isLastRowRelative = reference.IsLastRowRelative;