igCheckbox() private method

private igCheckbox ( string label, bool &v ) : bool
label string
v bool
return bool
Esempio n. 1
0
 public static unsafe bool Checkbox(string label, ref bool value)
 {
     fixed(byte *bytes = System.Text.Encoding.UTF8.GetBytes(label))
     {
         return(ImGuiNative.igCheckbox(bytes, ref value));
     }
 }
Esempio n. 2
0
 public static bool Checkbox(string label, ref bool value)
 {
     return(ImGuiNative.igCheckbox(label, ref value));
 }
Esempio n. 3
0
 public static bool Checkbox(string label, ref bool value)
 => ImGuiNative.igCheckbox(label, ref value);