Class ExcelTextFormatColumn
Inheritance
System.Object
ExcelTextFormatColumn
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: OfficeOpenXml
Assembly: EPPlus.dll
Syntax
public class ExcelTextFormatColumn
Properties
DataType
The data type of the column. Is set to Unknown by default
Declaration
public eDataTypes DataType { get; set; }
Property Value
Type | Description |
---|---|
eDataTypes |
Length
The length of the column.
Declaration
public int Length { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Name
The name of the column
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.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.
Declaration
public PaddingAlignmentType PaddingType { get; set; }
Property Value
Type | Description |
---|---|
PaddingAlignmentType |
Position
The start position of the column, is equal to -1 if not set
Declaration
public int Position { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
UseColumn
Flag to set if column should be used when reading and writing fixed width text.
Declaration
public bool UseColumn { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |