Navigation
API > API/Editor > API/Editor/UnrealEd
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TSharedRef< SToolTip > FEditorClassUtils::GetTooltip
(
const UClass* Class |
Gets the tooltip to display for a given class | EditorClassUtils.h | |
TSharedRef< SToolTip > FEditorClassUtils::GetTooltip
(
const UClass* Class, |
Gets the tooltip to display for a given class with specified text for the tooltip | EditorClassUtils.h |
FEditorClassUtils::GetTooltip(const UClass *)
Description
Gets the tooltip to display for a given class
| Name | FEditorClassUtils::GetTooltip |
| Type | function |
| Header File | /Engine/Source/Editor/UnrealEd/Public/EditorClassUtils.h |
| Include Path | #include "EditorClassUtils.h" |
| Source | /Engine/Source/Editor/UnrealEd/Private/EditorClassUtils.cpp |
namespace FEditorClassUtils
{
TSharedRef < SToolTip > FEditorClassUtils::GetTooltip
(
const UClass * Class
)
}
Shared reference to the constructed tooltip
Parameters
| Name | Remarks |
|---|---|
| InClass | Class we want to build a tooltip for |
FEditorClassUtils::GetTooltip(const UClass *, const TAttribute< FText > &)
Description
Gets the tooltip to display for a given class with specified text for the tooltip
| Name | FEditorClassUtils::GetTooltip |
| Type | function |
| Header File | /Engine/Source/Editor/UnrealEd/Public/EditorClassUtils.h |
| Include Path | #include "EditorClassUtils.h" |
| Source | /Engine/Source/Editor/UnrealEd/Private/EditorClassUtils.cpp |
namespace FEditorClassUtils
{
TSharedRef < SToolTip > FEditorClassUtils::GetTooltip
(
const UClass * Class,
const TAttribute < FText > & OverrideText
)
}
Shared reference to the constructed tooltip
Parameters
| Name | Remarks |
|---|---|
| InClass | Class we want to build a tooltip for |
| OverrideText | The text to display on the standard tooltip |