MCPcopy Create free account
hub / github.com/cinder/Cinder / SetColumnWidth

Method SetColumnWidth

src/imgui/imgui_tables.cpp:4258–4267  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4256}
4257
4258void ImGui::SetColumnWidth(int column_index, float width)
4259{
4260 ImGuiWindow* window = GetCurrentWindowRead();
4261 ImGuiOldColumns* columns = window->DC.CurrentColumns;
4262 IM_ASSERT(columns != NULL);
4263
4264 if (column_index < 0)
4265 column_index = columns->Current;
4266 SetColumnOffset(column_index + 1, GetColumnOffset(column_index) + width);
4267}
4268
4269void ImGui::PushColumnClipRect(int column_index)
4270{

Callers

nothing calls this directly

Calls 1

GetCurrentWindowReadFunction · 0.85

Tested by

no test coverage detected