Protogame.FlowContainer.SetChildSize C# (CSharp) Méthode

SetChildSize() public méthode

public SetChildSize ( IContainer child, string size ) : void
child IContainer
size string
Résultat void
        public void SetChildSize(IContainer child, string size)
        {
            var index = _children.IndexOf(child);
            _sizes.RemoveAt(index);
            _sizes.Insert(index, size);
        }