Dalamud/imgui/Dalamud.Bindings.ImGui/Generated/Enums/ImGuiOldColumnFlags.cs
2025-04-06 21:08:34 +02:00

52 lines
1.3 KiB
C#

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