// ------------------------------------------------------------------------------ // // 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 ImGuiTableBgTarget : int { /// /// To be documented. /// None = unchecked(0), /// /// Set row background color 0 (generally used for background, automatically set when ImGuiTableFlags_RowBg is used)
///
RowBg0 = unchecked(1), /// /// Set row background color 1 (generally used for selection marking)
///
RowBg1 = unchecked(2), /// /// Set cell background color (top-most color)
///
CellBg = unchecked(3), } }