Class ExcelTextFormatColumn
- Namespace
- OfficeOpenXml
- Assembly
- EPPlus.dll
public class ExcelTextFormatColumn
- Inheritance
-
ExcelTextFormatColumn
- Inherited Members
Constructors
ExcelTextFormatColumn()
public ExcelTextFormatColumn()
Properties
DataType
The data type of the column. Is set to Unknown by default
public eDataTypes DataType { get; set; }
Property Value
Length
The length of the column.
public int Length { get; }
Property Value
Name
The name of the column
public string Name { get; set; }
Property Value
PaddingType
The padding type of the column. Is set to auto by default, which will try to pad numbers to the right and strings to the left.
public PaddingAlignmentType PaddingType { get; set; }
Property Value
Position
The start position of the column, is equal to -1 if not set
public int Position { get; }
Property Value
UseColumn
Flag to set if column should be used when reading and writing fixed width text.
public bool UseColumn { get; set; }