namespace ImGuiNET
{
///
/// 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.
///
public enum StyleVar
{
///
/// float
///
Alpha,
///
/// System.Numerics.Vector2
///
WindowPadding,
///
/// float
///
WindowRounding,
///
/// System.Numerics.Vector2
///
WindowMinSize,
///
/// float
///
ChildWindowRounding,
///
/// System.Numerics.Vector2
///
FramePadding,
///
/// float
///
FrameRounding,
///
/// System.Numerics.Vector2
///
ItemSpacing,
///
/// System.Numerics.Vector2
///
ItemInnerSpacing,
///
/// float
///
IndentSpacing,
///
/// float
///
GrabMinSize
};
}