CellDirection {Microsoft.VisualBasic.MIME.Office.Excel.XLSX.Writer} .NET clr documentation

CellDirection

Description

Enum to define the direction when using AddNextCell method

Declare

            
# 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;

}

        

.NET clr type reference tree

  1. this class extends from Enum class: Enum
  2. use by field member ColumnToColumn: CellDirection
  3. use by field member RowToRow: CellDirection
  4. use by field member Disabled: CellDirection

[Package {$package} version {$version} Index]