FairyGUI.Utils.HtmlElement.FetchAttributes C# (CSharp) Method

FetchAttributes() public method

public FetchAttributes ( ) : void
return void
        public void FetchAttributes()
        {
            attributes = XMLIterator.GetAttributes(attributes);
        }

Usage Example

Example #1
0
 static public int FetchAttributes(IntPtr l)
 {
     try {
         FairyGUI.Utils.HtmlElement self = (FairyGUI.Utils.HtmlElement)checkSelf(l);
         self.FetchAttributes();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
All Usage Examples Of FairyGUI.Utils.HtmlElement::FetchAttributes