// ------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // // ------------------------------------------------------------------------------ using System; using HexaGen.Runtime; using System.Numerics; namespace Dalamud.Bindings.ImGui { /// /// To be documented. /// [Flags] public enum ImGuiOldColumnFlags : int { /// /// To be documented. /// None = unchecked(0), /// /// Disable column dividers
///
NoBorder = unchecked(1), /// /// Disable resizing columns when clicking on the dividers
///
NoResize = unchecked(2), /// /// Disable column width preservation when adjusting columns
///
NoPreserveWidths = unchecked(4), /// /// Disable forcing columns to fit within window
///
NoForceWithinWindow = unchecked(8), /// /// Restore pre-1.51 behavior of extending the parent window contents size but _without affecting the columns width at all_. Will eventually remove.
///
GrowParentContentsSize = unchecked(16), } }