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