[]
Gets whether the reference includes a column part.
This property indicates whether the reference contains column information.
The default value is true. If the reference is in an error state, this
property returns false.
public bool HasColumn { get; set; }
Public Property HasColumn As Boolean
Reference reference = new Reference();
reference.HasColumn = false;
bool hasColumn = reference.HasColumn;