Navigation
API > API/Runtime > API/Runtime/SlateCore > API/Runtime/SlateCore/TSlateBaseNamedArgs
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
WidgetArgsType & IsEnabled
(
TAttribute< bool > InAttribute |
Widgets/DeclarativeSyntaxSupport.h | ||
WidgetArgsType & IsEnabled
(
TSharedRef< UserClass > InUserObjectRef, |
Bind attribute with delegate to a shared pointer-based class method. | Widgets/DeclarativeSyntaxSupport.h | |
WidgetArgsType & IsEnabled
(
UserClass* InUserObject, |
Bind attribute with delegate to a shared pointer-based class method. | Widgets/DeclarativeSyntaxSupport.h |
IsEnabled(TAttribute< bool >)
| Name | IsEnabled |
| Type | function |
| Header File | /Engine/Source/Runtime/SlateCore/Public/Widgets/DeclarativeSyntaxSupport.h |
| Include Path | #include "Widgets/DeclarativeSyntaxSupport.h" |
WidgetArgsType & IsEnabled
(
TAttribute < bool > InAttribute
)
IsEnabled(TSharedRef< UserClass >, typename TAttribute< bool >::FGetter::template TConstMethodPtr< UserClass, VarTypes... >, VarTypes...)
Description
Bind attribute with delegate to a shared pointer-based class method. Slate mostly uses shared pointers so we use an overload for this type of binding.
| Name | IsEnabled |
| Type | function |
| Header File | /Engine/Source/Runtime/SlateCore/Public/Widgets/DeclarativeSyntaxSupport.h |
| Include Path | #include "Widgets/DeclarativeSyntaxSupport.h" |
template<class UserClass, typename... VarTypes>
WidgetArgsType & IsEnabled
(
TSharedRef < UserClass > InUserObjectRef,
typename TAttribute < bool >::FGetter::template TConstMethodPtr< UserClass, VarTypes... > InFunc,
VarTypes... Vars
)
IsEnabled(UserClass *, typename TAttribute< bool >::FGetter::template TConstMethodPtr< UserClass, VarTypes... >, VarTypes...)
Description
Bind attribute with delegate to a shared pointer-based class method. Slate mostly uses shared pointers so we use an overload for this type of binding.
| Name | IsEnabled |
| Type | function |
| Header File | /Engine/Source/Runtime/SlateCore/Public/Widgets/DeclarativeSyntaxSupport.h |
| Include Path | #include "Widgets/DeclarativeSyntaxSupport.h" |
template<class UserClass, typename... VarTypes>
WidgetArgsType & IsEnabled
(
UserClass * InUserObject,
typename TAttribute < bool >::FGetter::template TConstMethodPtr< UserClass, VarTypes... > InFunc,
VarTypes... Vars
)