igCombo() приватный Метод

private igCombo ( string label, int &current_item, string items, int items_count, int height_in_items ) : bool
label string
current_item int
items string
items_count int
height_in_items int
Результат bool
Пример #1
0
 public unsafe static bool Combo(string label, ref int current_item, string[] items)
 {
     return(ImGuiNative.igCombo(utf8String(label), ref current_item, items, items.Length, 5));
 }
Пример #2
0
 public unsafe static bool Combo(string label, ref int current_item, string[] items, int heightInItems)
 {
     return(ImGuiNative.igCombo(label, ref current_item, items, items.Length, heightInItems));
 }
Пример #3
0
 public unsafe static bool Combo(string label, ref int current_item, string[] items)
 => ImGuiNative.igCombo(label, ref current_item, items, items.Length, 5);