XLibrary.FieldModel.InitCells C# (CSharp) Méthode

InitCells() public méthode

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

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