Navigation
API > API/Editor > API/Editor/PropertyEditor > API/Editor/PropertyEditor/IDetailCategoryBuilder
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
IDetailPropertyRow & AddProperty
(
TSharedPtr< IPropertyHandle > PropertyHandle, |
Adds a property, shown in the default way to the category | DetailCategoryBuilder.h | |
IDetailPropertyRow & AddProperty
(
FName PropertyPath, |
Adds a property, shown in the default way to the category | DetailCategoryBuilder.h |
AddProperty(TSharedPtr< IPropertyHandle >, EPropertyLocation::Type)
Description
Adds a property, shown in the default way to the category
| Name | AddProperty |
| Type | function |
| Header File | /Engine/Source/Editor/PropertyEditor/Public/DetailCategoryBuilder.h |
| Include Path | #include "DetailCategoryBuilder.h" |
IDetailPropertyRow & AddProperty
(
TSharedPtr < IPropertyHandle > PropertyHandle,
EPropertyLocation::Type Location
)
Parameters
| Name | Remarks |
|---|---|
| PropertyHandle | The handle to the property to add |
| Location | The location within the category where the property is shown |
AddProperty(FName, UClass *, FName, EPropertyLocation::Type)
Description
Adds a property, shown in the default way to the category
| Name | AddProperty |
| Type | function |
| Header File | /Engine/Source/Editor/PropertyEditor/Public/DetailCategoryBuilder.h |
| Include Path | #include "DetailCategoryBuilder.h" |
IDetailPropertyRow & AddProperty
(
FName PropertyPath,
UClass * ClassOutermost,
FName InstanceName,
EPropertyLocation::Type Location
)
Parameters
| Name | Remarks |
|---|---|
| Path | The path to the property. Can be just a name of the property or a path in the format outer.outer.value[optional_index_for_static_arrays] |
| ClassOutermost | Optional outer class if accessing a property outside of the current class being customized |
| InstanceName | Optional instance name if multiple FProperty's of the same type exist. such as two identical structs, the instance name is one of the struct variable names) |
| Location | The location within the category where the property is shown See IDetailCategoryBuilder::GetProperty for clarification of parameters |