FPropertySection

A property section is a group of categories with a name, eg. "Rendering" might contain "Materials" and "Lighting".

Choose your operating system:

Windows

macOS

Linux

References

Module

PropertyEditor

Header

/Engine/Source/Editor/PropertyEditor/Public/PropertyEditorModule.h

Include

#include "PropertyEditorModule.h"

Syntax

class FPropertySection

Remarks

A property section is a group of categories with a name, eg. "Rendering" might contain "Materials" and "Lighting". Categories may belong to zero or more sections.

Constructors

Name Description

Public function

FPropertySection

(
    const FPropertySection&
)

Public function

FPropertySection

(
    FName InName,
    FText InDisplayName
)

Destructors

Name Description

Public function Virtual

~FPropertySection()

Functions

Name Description

Public function Virtual

void

 

AddCategory

(
    FName CategoryName
)

Add a category to this section.

Public function Virtual Const

FText

 

GetDisplayName()

Get the display name of this section.

Public function Virtual Const

FName

 

GetName()

Get the internal name of this property section.

Public function Virtual Const

bool

 

HasAddedCategory

(
    FName CategoryName
)

Does this section add the given category?

Public function Virtual Const

bool

 

HasRemovedCategory

(
    FName CategoryName
)

Does this section remove the given category?

Public function Virtual

void

 

RemoveCategory

(
    FName CategoryName
)

Remove a category from this section.