[]
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.
public bool IsLastRowRelative { get; set; }
Public Property IsLastRowRelative As Boolean
Reference reference = new Reference();
reference.LastRow = 1;
reference.IsLastRowRelative = false;
bool isLastRowRelative = reference.IsLastRowRelative;