enum
ImGui::ImGuiComboFlags
Overview
Defined in:
types.crEnum Members
-
None =
0 -
PopupAlignLeft =
1 -
Align the popup toward the left by default
-
HeightSmall =
2 -
Max ~4 items visible. Tip: If you want your combo popup to be a specific size you can use SetNextWindowSizeConstraints() prior to calling BeginCombo()
-
HeightRegular =
4 -
Max ~8 items visible (default)
-
HeightLarge =
8 -
Max ~20 items visible
-
HeightLargest =
16 -
As many fitting items as possible
-
NoArrowButton =
32 -
Display on the preview box without the square arrow button
-
NoPreview =
64 -
Display only a square arrow button
-
WidthFitPreview =
128 -
Width dynamically calculated from preview contents
-
HeightMask_ =
30 -
All =
255
Instance Method Summary
-
#height_large?
Returns
trueif this enum value containsHeightLarge -
#height_largest?
Returns
trueif this enum value containsHeightLargest -
#height_mask_?
Returns
trueif this enum value containsHeightMask_ -
#height_regular?
Returns
trueif this enum value containsHeightRegular -
#height_small?
Returns
trueif this enum value containsHeightSmall -
#no_arrow_button?
Returns
trueif this enum value containsNoArrowButton -
#no_preview?
Returns
trueif this enum value containsNoPreview -
#none?
Returns
trueif this enum value containsNone -
#popup_align_left?
Returns
trueif this enum value containsPopupAlignLeft -
#width_fit_preview?
Returns
trueif this enum value containsWidthFitPreview