CellDirection {Microsoft.VisualBasic.MIME.Office.Excel.XLSX.Writer} | .NET clr documentation |
Enum to define the direction when using AddNextCell method
# namespace Microsoft.VisualBasic.MIME.Office.Excel.XLSX.Writer
export class CellDirection extends Enum {
# The next cell will be on the same row (A1,B1,C1...)
ColumnToColumn: CellDirection = 0;
# The next cell will be on the same column (A1,A2,A3...)
RowToRow: CellDirection = 1;
# The address of the next cell will be not changed when adding a cell (for manual definition of cell addresses)
Disabled: CellDirection = 2;
}
ColumnToColumn
: CellDirectionRowToRow
: CellDirectionDisabled
: CellDirection