Fork of mellinoe/ImGui.NET, an ImGui wrapper for .NET, which includes access to internal functions.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

54 lines
1.3 KiB

namespace ImGuiNET
{
/// <summary>
/// Enumeration for PushStyleVar() / PopStyleVar()
/// NB: the enum only refers to fields of ImGuiStyle() which makes sense to be pushed/poped in UI code. Feel free to add others.
/// </summary>
public enum StyleVar
{
/// <summary>
/// float
/// </summary>
Alpha,
/// <summary>
/// System.Numerics.Vector2
/// </summary>
WindowPadding,
/// <summary>
/// float
/// </summary>
WindowRounding,
/// <summary>
/// System.Numerics.Vector2
/// </summary>
WindowMinSize,
/// <summary>
/// float
/// </summary>
ChildWindowRounding,
/// <summary>
/// System.Numerics.Vector2
/// </summary>
FramePadding,
/// <summary>
/// float
/// </summary>
FrameRounding,
/// <summary>
/// System.Numerics.Vector2
/// </summary>
ItemSpacing,
/// <summary>
/// System.Numerics.Vector2
/// </summary>
ItemInnerSpacing,
/// <summary>
/// float
/// </summary>
IndentSpacing,
/// <summary>
/// float
/// </summary>
GrabMinSize
};
}