namespace ImGuiNET { /// /// User fill ImGuiIO.KeyMap[] array with indices into the ImGuiIO.KeysDown[512] array /// public enum GuiKey : int { /// /// for tabbing through fields /// Tab, /// /// for text edit /// LeftArrow, /// /// for text edit /// RightArrow, /// /// for text edit /// UpArrow, /// /// for text edit /// DownArrow, PageUp, PageDown, /// /// for text edit /// Home, /// /// for text edit /// End, /// /// for text edit /// Delete, /// /// for text edit /// Backspace, /// /// for text edit /// Enter, /// /// for text edit /// Escape, /// /// for text edit CTRL+A: select all /// A, /// /// for text edit CTRL+C: copy /// C, /// /// for text edit CTRL+V: paste /// V, /// /// for text edit CTRL+X: cut /// X, /// /// for text edit CTRL+Y: redo /// Y, /// /// for text edit CTRL+Z: undo /// Z, Count } }