igCheckbox() private méthode

private igCheckbox ( string label, bool &v ) : bool
label string
v bool
Résultat bool
Exemple #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));
     }
 }
Exemple #2
0
 public static bool Checkbox(string label, ref bool value)
 {
     return(ImGuiNative.igCheckbox(label, ref value));
 }
Exemple #3
0
 public static bool Checkbox(string label, ref bool value)
 => ImGuiNative.igCheckbox(label, ref value);