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

Remove() public method

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

Usage Example

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