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