[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Expressions.Reference.Column

Column Property

Column

Gets or sets the 0-based column index.

This property stores the column index of the reference. The default value is 0.

Declaration
public int Column { get; set; }
Public Property Column As Integer
Examples
Reference reference = new Reference();
reference.Column = 2;
int column = reference.Column;