Navigation
API > API/Editor > API/Editor/PropertyEditor
Collects advanced arguments for MakePropertyComboBox
| Name | FPropertyComboBoxArgs |
| Type | struct |
| Header File | /Engine/Source/Editor/PropertyEditor/Public/PropertyCustomizationHelpers.h |
| Include Path | #include "PropertyCustomizationHelpers.h" |
Syntax
struct FPropertyComboBoxArgs
Constructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Default constructor, the caller will need to fill in values manually | PropertyCustomizationHelpers.h | ||
FPropertyComboBoxArgs
(
const TSharedPtr< IPropertyHandle >& InPropertyHandle, |
Constructor using original function arguments | PropertyCustomizationHelpers.h |
Variables
Public
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| Font | FSlateFontInfo | Font to use for text display. If not set it will use the default property editor font | PropertyCustomizationHelpers.h | |
| OnGetStrings | FOnGetPropertyComboBoxStrings | Delegate that is called to generate the list of possible strings inside the combo box list. | PropertyCustomizationHelpers.h | |
| OnGetValue | FOnGetPropertyComboBoxValue | Delegate that is called to get the current string value to display as the combo box label. | PropertyCustomizationHelpers.h | |
| OnValueSelected | FOnPropertyComboBoxValueSelected | Delegate called when a string is selected. | PropertyCustomizationHelpers.h | |
| PropertyHandle | TSharedPtr< IPropertyHandle > | If set, the combo box will bind to a specific property. | PropertyCustomizationHelpers.h | |
| ShowSearchForItemCount | int32 | If number of items in combo box is >= this, it will show a search box to allow filtering. | PropertyCustomizationHelpers.h |