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

GetAttributeBool() public method

public GetAttributeBool ( string attrName ) : bool
attrName string
return bool
        public bool GetAttributeBool(string attrName)
        {
            return GetAttributeBool(attrName, false);
        }

Same methods

XML::GetAttributeBool ( string attrName, bool defValue ) : bool

Usage Example

 static public int GetAttributeBool(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.GetAttributeBool(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.Boolean a2;
             checkType(l, 3, out a2);
             var ret = self.GetAttributeBool(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::GetAttributeBool