FairyGUI.Utils.XML.GetAttributeFloat C# (CSharp) Method

GetAttributeFloat() public method

public GetAttributeFloat ( string attrName ) : float
attrName string
return float
        public float GetAttributeFloat(string attrName)
        {
            return GetAttributeFloat(attrName, 0);
        }

Same methods

XML::GetAttributeFloat ( string attrName, float defValue ) : float

Usage Example

 static public int GetAttributeFloat(IntPtr l)
 {
     try {
         int argc = LuaDLL.lua_gettop(l);
         if (argc == 2)
         {
             FairyGUI.Utils.XML self = (FairyGUI.Utils.XML)checkSelf(l);
             System.String      a1;
             checkType(l, 2, out a1);
             var ret = self.GetAttributeFloat(a1);
             pushValue(l, true);
             pushValue(l, ret);
             return(2);
         }
         else if (argc == 3)
         {
             FairyGUI.Utils.XML self = (FairyGUI.Utils.XML)checkSelf(l);
             System.String      a1;
             checkType(l, 2, out a1);
             System.Single a2;
             checkType(l, 3, out a2);
             var ret = self.GetAttributeFloat(a1, a2);
             pushValue(l, true);
             pushValue(l, ret);
             return(2);
         }
         pushValue(l, false);
         LuaDLL.lua_pushstring(l, "No matched override function to call");
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
All Usage Examples Of FairyGUI.Utils.XML::GetAttributeFloat