[]
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.
public bool IsRowRelative { get; set; }
Public Property IsRowRelative As Boolean
Reference reference = new Reference();
reference.Row = 2;
reference.IsRowRelative = false;
bool isRowRelative = reference.IsRowRelative;