Exemplo n.º 1
0
 public void Remove()
 {
     if (!_hidden && textInput.displayObject.parent != null)
     {
         _owner.RemoveChild(_border);
         _owner.RemoveChild(textInput.displayObject);
     }
 }
Exemplo n.º 2
0
        public void Remove()
        {
            if (!_hidden && textInput.displayObject.parent != null)
            {
                _owner.RemoveChild(_border);
                _owner.RemoveChild(textInput.displayObject);
            }
            textInput.RemoveEventListeners();
            textInput.text = null;

            _owner   = null;
            _element = null;
        }
Exemplo n.º 3
0
 public void Remove()
 {
     if (_shape.parent != null)
     {
         _owner.RemoveChild(_shape);
     }
 }
Exemplo n.º 4
0
 public void Remove()
 {
     if (loader.displayObject.parent != null)
     {
         _owner.RemoveChild(loader.displayObject);
     }
 }
Exemplo n.º 5
0
 public void Remove()
 {
     if (comboBox != null && comboBox.displayObject.parent != null)
     {
         _owner.RemoveChild(comboBox.displayObject);
     }
 }
Exemplo n.º 6
0
 public void Remove()
 {
     if (button != null && button.displayObject.parent != null)
     {
         _owner.RemoveChild(button.displayObject);
     }
 }
Exemplo n.º 7
0
        public void Remove()
        {
            if (shape.parent != null)
            {
                _owner.RemoveChild(shape);
            }
            shape.RemoveEventListeners();

            _owner   = null;
            _element = null;
        }
Exemplo n.º 8
0
        public void Remove()
        {
            if (loader.displayObject.parent != null)
            {
                _owner.RemoveChild(loader.displayObject);
            }
            if (_externalTexture)
            {
                _owner.htmlPageContext.FreeImageTexture(this, loader.texture);
            }
            loader.url = null;

            _owner   = null;
            _element = null;
        }
Exemplo n.º 9
0
        public void Remove()
        {
            if (button != null)
            {
                if (button.displayObject.parent != null)
                {
                    _owner.RemoveChild(button.displayObject);
                }

                button.RemoveEventListeners();
            }

            _owner   = null;
            _element = null;
        }
Exemplo n.º 10
0
        public void Remove()
        {
            if (comboBox != null)
            {
                if (comboBox.displayObject.parent != null)
                {
                    _owner.RemoveChild(comboBox.displayObject);
                }

                comboBox.RemoveEventListeners();
            }

            _owner   = null;
            _element = null;
        }