Navigation
Unreal Engine C++ API Reference > Developer > SettingsEditor
References
Module | SettingsEditor |
Header | /Engine/Source/Developer/SettingsEditor/Public/ISettingsEditorModel.h |
Include | #include "ISettingsEditorModel.h" |
Syntax
class ISettingsEditorModel
Remarks
Interface for settings editor view models.
The settings editor view model stores the view state for the Settings Editor UI. Instances of this interface can be passed to Settings Editors in order to provide access to the settings container being added and to perform various user actions, such as setting the currently selected settings section.
Destructors
Type | Name | Description | |
---|---|---|---|
![]() ![]() |
Virtual destructor. |
Functions
Type | Name | Description | |
---|---|---|---|
![]() ![]() |
TSharedPtr< ISettingsSection > | GetSectionFromSectionObject
(
const UObject* SectionObject |
Gets the section interface for a specified section object |
![]() ![]() |
const TSharedPtr< ISettingsSection > & | Gets the selected settings section. | |
![]() ![]() |
const TSharedRef< ISettingsContainer > & | Gets the settings container. | |
![]() |
FSimpleMulticastDelegate & | Returns a delegate that is executed when the selected settings section has changed. | |
![]() |
void | SelectSection
(
const TSharedPtr< ISettingsSection >& Section |
Selects the specified settings section to be displayed in the editor. |