[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Expressions.Reference.HasColumn

HasColumn Property

HasColumn

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.

Declaration
public bool HasColumn { get; set; }
Public Property HasColumn As Boolean
Examples
Reference reference = new Reference();
reference.HasColumn = false;
bool hasColumn = reference.HasColumn;