BExIS.IO.Transform.Output.ExcelWriter.GetEmptyCell C# (CSharp) Метод

GetEmptyCell() защищенный Метод

Get a empty cell
protected GetEmptyCell ( int rowIndex, int columnIndex ) : Cell
rowIndex int
columnIndex int
Результат Cell
        protected Cell GetEmptyCell(int rowIndex, int columnIndex)
        {
            string cellRef = getColumnIndex(columnIndex);

            //CellFormat cellFormat = new CellFormat() { NumberFormatId = (UInt32Value)2U, FontId = (UInt32Value)0U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyNumberFormat = true };
            //cellFormat.Protection = new Protection();
            //cellFormat.Protection.Locked = false;

            //Sty

            return  new Cell()
                    {
                        CellReference = cellRef,
                        StyleIndex = (UInt32Value)5U,
                        DataType = CellValues.String,
                        CellValue = new CellValue("")
                    };
        }