OfficeOpenXml.ExcelColumn.ExcelColumn C# (CSharp) Method

ExcelColumn() protected method

Creates a new instance of the ExcelColumn class. For internal use only!
protected ExcelColumn ( OfficeOpenXml.ExcelWorksheet Worksheet, int col ) : System
Worksheet OfficeOpenXml.ExcelWorksheet
col int
return System
        protected internal ExcelColumn(ExcelWorksheet Worksheet, int col)
        {
            _worksheet = Worksheet;
            _columnMin = col;
            _columnMax = col;
            _width = _worksheet.DefaultColWidth;
        }