Navigation
API > API/Runtime > API/Runtime/Slate > API/Runtime/Slate/FInputBindingManager
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
const TSharedPtr< FUICommandInfo > FindCommandInContext
(
const FName InBindingContext, |
Finds the command in the provided context which has the provided name | Framework/Commands/InputBindingManager.h | |
const TSharedPtr< FUICommandInfo > FindCommandInContext
(
const FName InBindingContext, |
Finds the command in the provided context which uses the provided input chord | Framework/Commands/InputBindingManager.h |
FindCommandInContext(const FName, const FName)
Description
Finds the command in the provided context which has the provided name
| Name | FindCommandInContext |
| Type | function |
| Header File | /Engine/Source/Runtime/Slate/Public/Framework/Commands/InputBindingManager.h |
| Include Path | #include "Framework/Commands/InputBindingManager.h" |
| Source | /Engine/Source/Runtime/Slate/Private/Framework/Commands/InputBindingManager.cpp |
const TSharedPtr < FUICommandInfo > FindCommandInContext
(
const FName InBindingContext,
const FName CommandName
) const
Parameters
| Name | Remarks |
|---|---|
| InBindingContext | The binding context name |
| CommandName | The name of the command to find |
FindCommandInContext(const FName, const FInputChord &, bool)
Description
Finds the command in the provided context which uses the provided input chord
| Name | FindCommandInContext |
| Type | function |
| Header File | /Engine/Source/Runtime/Slate/Public/Framework/Commands/InputBindingManager.h |
| Include Path | #include "Framework/Commands/InputBindingManager.h" |
| Source | /Engine/Source/Runtime/Slate/Private/Framework/Commands/InputBindingManager.cpp |
const TSharedPtr < FUICommandInfo > FindCommandInContext
(
const FName InBindingContext,
const FInputChord & InChord,
bool bCheckDefault
) const
Parameters
| Name | Remarks |
|---|---|
| InBindingContext | The binding context name |
| InChord | The chord to check against when looking for commands |
| bCheckDefault | Whether or not to check the default chord of commands instead of active chords |
| OutActiveChordIndex | The index into the commands active chord array where the passed in chord was matched. INDEX_NONE if bCheckDefault is true or nothing was found. |