XLibrary.FieldModel.InitCells C# (CSharp) 메소드

InitCells() 공개 메소드

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

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