Table of Contents

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

eDataTypes

Length

The length of the column.

public int Length { get; }

Property Value

int

Name

The name of the column

public string Name { get; set; }

Property Value

string

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

PaddingAlignmentType

Position

The start position of the column, is equal to -1 if not set

public int Position { get; }

Property Value

int

UseColumn

Flag to set if column should be used when reading and writing fixed width text.

public bool UseColumn { get; set; }

Property Value

bool