| 296 | } |
| 297 | |
| 298 | ImGuiTable* ImGui::TableFindByID(ImGuiID id) |
| 299 | { |
| 300 | ImGuiContext& g = *GImGui; |
| 301 | return g.Tables.GetByKey(id); |
| 302 | } |
| 303 | |
| 304 | // Read about "TABLE SIZING" at the top of this file. |
| 305 | bool ImGui::BeginTable(const char* str_id, int columns_count, ImGuiTableFlags flags, const ImVec2& outer_size, float inner_width) |