Navigation
API > API/Editor > API/Editor/PropertyEditor
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TSharedRef< SWidget > PropertyCustomizationHelpers::MakePropertyComboBox
(
const FPropertyComboBoxArgs& InArgs |
Build a combo button that you bind to a Name/String/Enum property or display using general delegates, using an arguments structure | PropertyCustomizationHelpers.h | |
TSharedRef< SWidget > PropertyCustomizationHelpers::MakePropertyComboBox
(
const TSharedPtr< IPropertyHandle >& InPropertyHandle, |
Build a combo button that you bind to a Name/String/Enum property or display using general delegates | PropertyCustomizationHelpers.h |
PropertyCustomizationHelpers::MakePropertyComboBox(const FPropertyComboBoxArgs &)
Description
Build a combo button that you bind to a Name/String/Enum property or display using general delegates, using an arguments structure
| Name | PropertyCustomizationHelpers::MakePropertyComboBox |
| Type | function |
| Header File | /Engine/Source/Editor/PropertyEditor/Public/PropertyCustomizationHelpers.h |
| Include Path | #include "PropertyCustomizationHelpers.h" |
| Source | /Engine/Source/Editor/PropertyEditor/Private/PropertyCustomizationHelpers.cpp |
namespace PropertyCustomizationHelpers
{
TSharedRef < SWidget > PropertyCustomizationHelpers::MakePropertyComboBox
(
const FPropertyComboBoxArgs & InArgs
)
}
Parameters
| Name | Remarks |
|---|---|
| InArgs | Options used to create combo box |
PropertyCustomizationHelpers::MakePropertyComboBox(const TSharedPtr< IPropertyHandle > &, FOnGetPropertyComboBoxStrings, FOnGetPropertyComboBoxValue, FOnPropertyComboBoxValueSelected)
Description
Build a combo button that you bind to a Name/String/Enum property or display using general delegates
| Name | PropertyCustomizationHelpers::MakePropertyComboBox |
| Type | function |
| Header File | /Engine/Source/Editor/PropertyEditor/Public/PropertyCustomizationHelpers.h |
| Include Path | #include "PropertyCustomizationHelpers.h" |
| Source | /Engine/Source/Editor/PropertyEditor/Private/PropertyCustomizationHelpers.cpp |
namespace PropertyCustomizationHelpers
{
TSharedRef < SWidget > PropertyCustomizationHelpers::MakePropertyComboBox
(
const TSharedPtr < IPropertyHandle > & InPropertyHandle,
FOnGetPropertyComboBoxStrings OnGetStrings,
FOnGetPropertyComboBoxValue OnGetValue,
FOnPropertyComboBoxValueSelected OnValueSelected
)
}
Parameters
| Name | Remarks |
|---|---|
| InPropertyHandle | If set, will bind to a specific property. If this is null, all 3 delegates must be set |
| OnGetStrings | Delegate that will generate the list of possible strings. If not set will generate using property handle |
| OnGetValue | Delegate that is called to get the current string value to display. If not set will generate using property handle |
| OnValueSelected | Delegate called when a string is selected. If not set will set the property handle |