XLibrary.FieldModel.InitCells C# (CSharp) Method

InitCells() public method

public InitCells ( string type, string value ) : void
type string
value string
return void
        void InitCells(string type, string value)
        {
            while (Cells.Count < 2)
                Cells.Add("");

            Cells[0] = type;
            Cells[1] = value;
        }