FairyGUI.Utils.HtmlImage.Remove C# (CSharp) Method

Remove() public method

public Remove ( ) : void
return void
        public void Remove()
        {
            if (loader.displayObject.parent != null)
                _owner.RemoveChild(loader.displayObject);
        }

Usage Example

Ejemplo n.º 1
0
 static public int Remove(IntPtr l)
 {
     try {
         FairyGUI.Utils.HtmlImage self = (FairyGUI.Utils.HtmlImage)checkSelf(l);
         self.Remove();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }