FairyGUI.Utils.HtmlInput.Add C# (CSharp) Method

Add() public method

public Add ( ) : void
return void
        public void Add()
        {
            if (!_hidden)
                _owner.AddChild(textInput.displayObject);
        }

Usage Example

Example #1
0
 static public int Add(IntPtr l)
 {
     try {
         FairyGUI.Utils.HtmlInput self = (FairyGUI.Utils.HtmlInput)checkSelf(l);
         self.Add();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }