public final class ImGuiTableColumnFlags
extends java.lang.Object
ImGui.tableSetupColumn(String, int)
Modifier and Type | Field and Description |
---|---|
static int |
DefaultHide
Default as a hidden/disabled column.
|
static int |
DefaultSort
Default as a sorting column.
|
static int |
IndentDisable
Ignore current Indent value when entering cell (default for columns
> 0). |
static int |
IndentEnable
Use current Indent value when entering cell (default for column 0).
|
static int |
IsEnabled
Status: is enabled == not hidden by user/api (referred to as "Hide" in _DefaultHide and _NoHide) flags.
|
static int |
IsHovered
Status: is hovered by mouse
|
static int |
IsSorted
Status: is currently part of the sort specs
|
static int |
IsVisible
Status: is visible == is enabled AND not clipped by scrolling.
|
static int |
NoClip
Disable clipping for this column (all NoClip columns will render in a same draw command).
|
static int |
NoHeaderWidth
Disable header text width contribution to automatic column width.
|
static int |
NoHide
Disable ability to hide/disable this column.
|
static int |
None |
static int |
NoReorder
Disable manual reordering this column, this will also prevent other columns from crossing over this column.
|
static int |
NoResize
Disable manual resizing.
|
static int |
NoSort
Disable ability to sort on this field (even if ImGuiTableFlags_Sortable is set on the table).
|
static int |
NoSortAscending
Disable ability to sort in the ascending direction.
|
static int |
NoSortDescending
Disable ability to sort in the descending direction.
|
static int |
PreferSortAscending
Make the initial sort direction Ascending when first sorting on this column (default).
|
static int |
PreferSortDescending
Make the initial sort direction Descending when first sorting on this column.
|
static int |
WidthFixed
Column will not stretch.
|
static int |
WidthStretch
Column will stretch.
|
public static final int None
public static final int DefaultHide
public static final int DefaultSort
public static final int WidthStretch
public static final int WidthFixed
public static final int NoResize
public static final int NoReorder
public static final int NoHide
public static final int NoClip
public static final int NoSort
public static final int NoSortAscending
public static final int NoSortDescending
public static final int NoHeaderWidth
public static final int PreferSortAscending
public static final int PreferSortDescending
public static final int IndentEnable
public static final int IndentDisable
>
0). Indentation changes _within_ the cell will still be honored.public static final int IsEnabled
public static final int IsVisible
public static final int IsSorted
public static final int IsHovered