static public int get_processedText(IntPtr l)
 {
     try {
         UI.Sources.TextWithIcon self = (UI.Sources.TextWithIcon)checkSelf(l);
         pushValue(l, self.processedText);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int constructor(IntPtr l)
 {
     try {
         UI.Sources.TextWithIcon o;
         o = new UI.Sources.TextWithIcon();
         pushValue(l, o);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int set_OriginText(IntPtr l)
 {
     try {
         UI.Sources.TextWithIcon self = (UI.Sources.TextWithIcon)checkSelf(l);
         string v;
         checkType(l, 2, out v);
         self.OriginText = v;
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int set_sizeDelta(IntPtr l)
 {
     try {
         UI.Sources.TextWithIcon self = (UI.Sources.TextWithIcon)checkSelf(l);
         System.Single           v;
         checkType(l, 2, out v);
         self.sizeDelta = v;
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }