struct ImGuiTypingSelectState

Overview

#include <imgui_internal.h>

struct ImGuiTypingSelectState
{
    // fields

    ImGuiTypingSelectRequest Request;
    char SearchBuffer[64];
    ImGuiID FocusScope;
    int LastRequestFrame = 0;
    float LastRequestTime = 0.0f;
    bool SingleCharModeLock = false;

    // methods

    void Clear();
};