MCPcopy Create free account
hub / github.com/KebsCS/KBotExt / SetColumnWidth

Method SetColumnWidth

KBotExt/imgui/imgui_tables.cpp:3837–3846  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3835}
3836
3837void ImGui::SetColumnWidth(int column_index, float width)
3838{
3839 ImGuiWindow* window = GetCurrentWindowRead();
3840 ImGuiOldColumns* columns = window->DC.CurrentColumns;
3841 IM_ASSERT(columns != NULL);
3842
3843 if (column_index < 0)
3844 column_index = columns->Current;
3845 SetColumnOffset(column_index + 1, GetColumnOffset(column_index) + width);
3846}
3847
3848void ImGui::PushColumnClipRect(int column_index)
3849{

Callers

nothing calls this directly

Calls 1

GetCurrentWindowReadFunction · 0.85

Tested by

no test coverage detected