Navigation
API > API/Plugins > API/Plugins/SlateScriptingCommands
References
| Module | SlateScriptingCommands |
| Header | /Engine/Plugins/Slate/SlateScripting/Source/SlateScriptingCommands/Public/UICommandsScriptingSubsystem.h |
| Include | #include "UICommandsScriptingSubsystem.h" |
Syntax
USTRUCT&40;BlueprintType&41;
struct FScriptingCommandInfo
Remarks
The data defining a scripting command. At the exception of its delegates.
Variables
| Type | Name | Description | |
|---|---|---|---|
| FName | ContextName | The editor context this command is bound to | |
| FText | Description | The description of the command | |
| FInputChord | InputChord | The input chord to bound to the command | |
| FText | Label | The command label or what name will be displayed for it | |
| FName | Name | The command name. Must be unique in its set. | |
| FName | Set | The command set this command belongs to. |
Functions
| Type | Name | Description | |
|---|---|---|---|
| bool | Equals
(
const FScriptingCommandInfo& InCommandInfo, |
Compares this command info with the given one per context, set, name and optionally input chord | |
| FName | GetFullName () |
Builds a full name in the format context.set.command_name to avoid conflicts with commands registered in different contexts/sets |