// ------------------------------------------------------------------------------ // // 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 ImGuiSeparatorFlags : int { /// /// To be documented. /// None = unchecked(0), /// /// Axis default to current layout type, so generally Horizontal unless e.g. in a menu bar
///
Horizontal = unchecked(1), /// /// To be documented. /// Vertical = unchecked(2), /// /// Make separator cover all columns of a legacy Columns() set.
///
SpanAllColumns = unchecked(4), } }