className
stringlengths 1
167
| headerPath
stringlengths 14
166
| description
stringlengths 0
1.62k
| module
stringlengths 0
76
| code
stringlengths 0
11.4k
| variables
listlengths 0
395
|
---|---|---|---|---|---|
TSlateAttributeBase::Bind | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | Bind the SlateAttribute to the Getter function. (If enabled) Update the value from the Getter. If the value is different, then invalidate the widget. The SlateAttribute will now be updated every frame from the Getter. | SlateCore | void Bind ( ContainerType & Widget, const [FGetter](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\FGetter) & Getter ) | [] |
AttributeType | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | SlateCore | static const [ESlateAttributeType](API\Runtime\SlateCore\Types\Attributes\SlateAttributePrivate__ESlateAtt-) AttributeType = InAttributeType; | [] |
|
TSlateAttributeBase::Bind | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | Bind the SlateAttribute to the Getter function. (If enabled) Update the value from the Getter. If the value is different, then invalidate the widget. The SlateAttribute will now be updated every frame from the Getter. | SlateCore | void Bind ( ContainerType & Widget, [FGetter](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\FGetter) && Getter ) | [] |
TSlateAttributeBase::Bind | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | Bind the SlateAttribute to the newly create getter function. (If enabled) Update the value from the getter. If the value is different, then invalidate the widget. The SlateAttribute will now be updated every frame from the Getter. | SlateCore | template<typename WidgetType, typename U> void Bind ( WidgetType & Widget, typename FGetter::template TConstMethodPtr< WidgetType > MethodPtr ) | [] |
FComparePredicate | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | SlateCore | typedef InComparePredicateType FComparePredicate | [] |
|
TSlateAttributeBase::Get | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | the SlateAttribute cached value. If the SlateAttribute is bound, the value will be cached at the end of the every frame. | SlateCore | UE_NODISCARD const [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\ObjectType) & Get() const | [] |
FGetter | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | SlateCore | typedef typename [TAttribute](API\Runtime\Core\Misc\TAttribute)< [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\ObjectType) >::[FGetter](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\FGetter) FGetter | [] |
|
FInvalidationReasonPredicate | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | SlateCore | typedef InInvalidationReasonPredicate FInvalidationReasonPredicate | [] |
|
TSlateAttributeBase::GetInvalidationReason | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | SlateCore | static EInvalidateWidgetReason GetInvalidationReason ( const [SWidget](API\Runtime\SlateCore\Widgets\SWidget) & Widget ) | [] |
|
TSlateAttributeBase::GetInvalidationReason | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | SlateCore | static EInvalidateWidgetReason GetInvalidationReason ( const [ISlateAttributeContainer](API\Runtime\SlateCore\Types\Attributes\ISlateAttributeContainer) & Container ) | [] |
|
HasDefinedInvalidationReason | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | SlateCore | static constexpr bool HasDefinedInvalidationReason = !std::is_same<InInvalidationReasonPredicate, FSlateAttributeNoInvalidationReason>::value; | [] |
|
TSlateAttributeBase::IdenticalTo | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | True if they have the same Getter or, if the Attribute is set, the same value. | SlateCore | UE_NODISCARDbool IdenticalTo ( const ContainerType & Widget, const [TAttribute](API\Runtime\Core\Misc\TAttribute)< [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\ObjectType) > & Other ) const | [] |
TSlateAttributeBase::IdenticalTo | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | SlateCore | static bool IdenticalTo ( const [SWidget](API\Runtime\SlateCore\Widgets\SWidget) & Widget, const [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\ObjectType) & Lhs, const [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\ObjectType) & Rhs ) | [] |
|
TSlateAttributeBase::IdenticalTo | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | True if they have the same Getter or the same value. | SlateCore | UE_NODISCARDbool IdenticalTo ( const ContainerType & Widget, const [TSlateAttributeBase](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase) & Other ) const | [] |
TSlateAttributeBase::IdenticalTo | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | SlateCore | static bool IdenticalTo ( const [ISlateAttributeContainer](API\Runtime\SlateCore\Types\Attributes\ISlateAttributeContainer) & Container, const [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\ObjectType) & Lhs, const [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\ObjectType) & Rhs ) | [] |
|
ObjectType | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | SlateCore | typedef InObjectType ObjectType | [] |
|
TSlateAttributeBase::IsBound | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | True if the SlateAttribute is bound to a getter function. | SlateCore | UE_NODISCARDbool IsBound ( const ContainerType & Widget ) const | [] |
TSlateAttributeBase::Set | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | Unbind the SlateAttribute and set its value. It may invalidate the Widget if the value is different.
true if the value is considered different and an invalidation occurred. | SlateCore | bool Set ( ContainerType & Widget, const [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\ObjectType) & NewValue ) | [] |
TSlateAttributeBase::Set | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | Unbind the SlateAttribute and set its value. It may invalidate the Widget if the value is different.
true if the value is considered different and an invalidation occurred. | SlateCore | bool Set ( ContainerType & Widget, [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\ObjectType) && NewValue ) | [] |
TSlateAttributeBase::ToAttribute | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | Build a Attribute from this SlateAttribute. | SlateCore | UE_NODISCARD[TAttribute](API\Runtime\Core\Misc\TAttribute)< [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\ObjectType) > ToAttribute ( const ContainerType & Widget ) const | [] |
TSlateAttributeBase::Unbind | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | Remove the Getter function. The Slate Attribute will not be updated anymore and will keep its current cached value. | SlateCore | void Unbind ( ContainerType & Widget ) | [] |
TSlateAttributeBase::UpdateNow | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | Update the cached value and invalidate the widget if needed. | SlateCore | void UpdateNow ( ContainerType & Widget ) | [] |
TSlateAttributeBase::TSlateAttributeBase | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | SlateCore | TSlateAttributeBase() | [] |
|
TSlateAttributeBase::TSlateAttributeBase | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | SlateCore | TSlateAttributeBase ( [SWidget](API\Runtime\SlateCore\Widgets\SWidget) & Widget, [FGetter](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\FGetter) && Getter, [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\ObjectType) && InitialValue ) | [] |
|
TSlateAttributeBase::TSlateAttributeBase | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | SlateCore | TSlateAttributeBase ( [SWidget](API\Runtime\SlateCore\Widgets\SWidget) & Widget, const [TAttribute](API\Runtime\Core\Misc\TAttribute)< [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\ObjectType) > & Attribute, const [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\ObjectType) & InitialValue ) | [] |
|
TSlateAttributeBase::TSlateAttributeBase | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | SlateCore | TSlateAttributeBase ( [SWidget](API\Runtime\SlateCore\Widgets\SWidget) & Widget, [TAttribute](API\Runtime\Core\Misc\TAttribute)< [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\ObjectType) > && Attribute, [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\ObjectType) && InitialValue ) | [] |
|
TSlateAttributeBase::TSlateAttributeBase | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | SlateCore | TSlateAttributeBase ( const [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\ObjectType) & InValue ) | [] |
|
TSlateAttributeBase::TSlateAttributeBase | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | SlateCore | TSlateAttributeBase ( [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\ObjectType) && InValue ) | [] |
|
TSlateAttributeBase::TSlateAttributeBase | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | SlateCore | TSlateAttributeBase ( [SWidget](API\Runtime\SlateCore\Widgets\SWidget) & Widget ) | [] |
|
TSlateAttributeBase::TSlateAttributeBase | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | SlateCore | TSlateAttributeBase ( [SWidget](API\Runtime\SlateCore\Widgets\SWidget) & Widget, const [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\ObjectType) & InValue ) | [] |
|
TSlateAttributeBase::TSlateAttributeBase | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | SlateCore | TSlateAttributeBase ( [SWidget](API\Runtime\SlateCore\Widgets\SWidget) & Widget, [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\ObjectType) && InValue ) | [] |
|
TSlateAttributeBase::TSlateAttributeBase | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | SlateCore | TSlateAttributeBase ( [SWidget](API\Runtime\SlateCore\Widgets\SWidget) & Widget, const [FGetter](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\FGetter) & Getter, [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\ObjectType) && InitialValue ) | [] |
|
TSlateAttributeBase::TSlateAttributeBase | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | SlateCore | TSlateAttributeBase ( [SWidget](API\Runtime\SlateCore\Widgets\SWidget) & Widget, [FGetter](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\FGetter) && Getter, const [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\ObjectType) & InitialValue ) | [] |
|
TSlateAttributeBase::TSlateAttributeBase | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | SlateCore | TSlateAttributeBase ( [SWidget](API\Runtime\SlateCore\Widgets\SWidget) & Widget, const [FGetter](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\FGetter) & Getter, const [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\ObjectType) & InitialValue ) | [] |
|
TSlateAttributeBase | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeBase.inl | Attribute object InObjectType - Type of the value to store InInvalidationReasonPredicate - Predicate that returns the type of invalidation to do when the value changes (e.g layout or paint) The invalidation can be overridden per widget. (This use memory allocation. See FSlateAttributeMetadata.) InComparePredicateType - Predicate to compare the cached value with the Getter. bInIsExternal - The attribute life is not controlled by theSWidget. | SlateCore | template<typename ContainerType, typename InObjectType, typename InInvalidationReasonPredicate, typename InComparePredicateType, [ESlateAttributeType](API\Runtime\SlateCore\Types\Attributes\SlateAttributePrivate__ESlateAtt-) InAttributeType> struct TSlateAttributeBase : public [SlateAttributePrivate::FSlateAttributeImpl](API\Runtime\SlateCore\Types\Attributes\FSlateAttributeImpl) | [] |
FGetter | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeContained.inl | SlateCore | typedef typename [Super::FGetter](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\FGetter) FGetter | [] |
|
ObjectType | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeContained.inl | SlateCore | typedef typename [Super::ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\ObjectType) ObjectType | [] |
|
TSlateContainedAttribute::operator= | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeContained.inl | SlateCore | [TSlateContainedAttribute](API\Runtime\SlateCore\Types\Attributes\TSlateContainedAttribute) & operator= ( [TSlateContainedAttribute](API\Runtime\SlateCore\Types\Attributes\TSlateContainedAttribute) && ) | [] |
|
TSlateContainedAttribute::operator= | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeContained.inl | SlateCore | [TSlateContainedAttribute](API\Runtime\SlateCore\Types\Attributes\TSlateContainedAttribute) & operator= ( const [TSlateContainedAttribute](API\Runtime\SlateCore\Types\Attributes\TSlateContainedAttribute) & ) | [] |
|
Super | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeContained.inl | SlateCore | typedef [TSlateAttributeBase](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase)< [ISlateAttributeContainer](API\Runtime\SlateCore\Types\Attributes\ISlateAttributeContainer), InObjectType, InInvalidationReasonPredicate, InComparePredicate, [ESlateAttributeType::Contained](API\Runtime\SlateCore\Types\Attributes\SlateAttributePrivate__ESlateAtt-) > Super | [] |
|
TSlateContainedAttribute::TSlateContainedAttribute | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeContained.inl | SlateCore | TSlateContainedAttribute ( [TSlateContainedAttribute](API\Runtime\SlateCore\Types\Attributes\TSlateContainedAttribute) && ) | [] |
|
TSlateContainedAttribute::TSlateContainedAttribute | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeContained.inl | SlateCore | TSlateContainedAttribute ( const [TSlateContainedAttribute](API\Runtime\SlateCore\Types\Attributes\TSlateContainedAttribute) & ) | [] |
|
TSlateContainedAttribute::TSlateContainedAttribute | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeContained.inl | SlateCore | TSlateContainedAttribute() | [] |
|
TSlateContainedAttribute::TSlateContainedAttribute | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeContained.inl | SlateCore | template<typename ContainerType, typename U> TSlateContainedAttribute ( ContainerType & Container ) | [] |
|
TSlateContainedAttribute::TSlateContainedAttribute | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeContained.inl | SlateCore | template<typename ContainerType, typename U> TSlateContainedAttribute ( ContainerType & Container, const [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateContainedAttribute\ObjectType) & InValue ) | [] |
|
TSlateContainedAttribute::TSlateContainedAttribute | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeContained.inl | SlateCore | template<typename ContainerType, typename U> TSlateContainedAttribute ( ContainerType & Container, [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateContainedAttribute\ObjectType) && InValue ) | [] |
|
TSlateContainedAttribute | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeContained.inl | SlateCore | template<typename InObjectType, typename InInvalidationReasonPredicate, typename InComparePredicate> struct TSlateContainedAttribute : public [SlateAttributePrivate::TSlateAttributeBase< ISlateAttributeContainer, InObjectType, InInvalidationReasonPredicate, InComparePredicate, ESlateAttributeType::Contained >](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase) | [] |
|
TSlateManagedAttribute::Assign | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | void Assign ( [TAttribute](API\Runtime\Core\Misc\TAttribute)< [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\ObjectType) > && OtherAttribute ) | [] |
|
TSlateManagedAttribute::Assign | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | void Assign ( const [TAttribute](API\Runtime\Core\Misc\TAttribute)< [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\ObjectType) > & OtherAttribute ) | [] |
|
TSlateManagedAttribute::Assign | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | void Assign ( const [TAttribute](API\Runtime\Core\Misc\TAttribute)< [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\ObjectType) > & OtherAttribute, [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\ObjectType) && DefaultValue ) | [] |
|
TSlateManagedAttribute::Assign | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | void Assign ( const [TAttribute](API\Runtime\Core\Misc\TAttribute)< [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\ObjectType) > & OtherAttribute, const [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\ObjectType) & DefaultValue ) | [] |
|
TSlateManagedAttribute::Assign | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | void Assign ( [TAttribute](API\Runtime\Core\Misc\TAttribute)< [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\ObjectType) > && OtherAttribute, const [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\ObjectType) & DefaultValue ) | [] |
|
TSlateManagedAttribute::Assign | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | void Assign ( [TAttribute](API\Runtime\Core\Misc\TAttribute)< [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\ObjectType) > && OtherAttribute, [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\ObjectType) && DefaultValue ) | [] |
|
TSlateManagedAttribute::Bind | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | void Bind ( const [FGetter](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\FGetter) & Getter ) | [] |
|
TSlateManagedAttribute::Bind | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | void Bind ( [FGetter](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\FGetter) && Getter ) | [] |
|
FGetter | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | typedef typename [Super::FGetter](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\FGetter) FGetter | [] |
|
TSlateManagedAttribute::Get | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | const [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\ObjectType) & Get() const | [] |
|
TSlateManagedAttribute::IdenticalTo | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | bool IdenticalTo ( const [TAttribute](API\Runtime\Core\Misc\TAttribute)< [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\ObjectType) > & Other ) const | [] |
|
TSlateManagedAttribute::GetInvalidationReason | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | static EInvalidateWidgetReason GetInvalidationReason ( const [SWidget](API\Runtime\SlateCore\Widgets\SWidget) & Widget ) | [] |
|
TSlateManagedAttribute::IdenticalTo | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | static bool IdenticalTo ( const [SWidget](API\Runtime\SlateCore\Widgets\SWidget) & Widget, const [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\ObjectType) & Lhs, const [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\ObjectType) & Rhs ) | [] |
|
TSlateManagedAttribute::IdenticalTo | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | bool IdenticalTo ( const [TSlateManagedAttribute](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute) & Other ) const | [] |
|
TSlateManagedAttribute::IsBound | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | bool IsBound() const | [] |
|
TSlateManagedAttribute::operator= | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | [TSlateManagedAttribute](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute) & operator= ( const [TSlateManagedAttribute](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute) & ) | [] |
|
TSlateManagedAttribute::operator= | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | [TSlateManagedAttribute](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute) & operator= ( [TSlateManagedAttribute](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute) && Other ) | [] |
|
TSlateManagedAttribute::Set | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | void Set ( [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\ObjectType) && NewValue ) | [] |
|
TSlateManagedAttribute::Set | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | void Set ( const [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\ObjectType) & NewValue ) | [] |
|
ObjectType | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | typedef typename [Super::ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\ObjectType) ObjectType | [] |
|
Super | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | typedef [TSlateAttributeBase](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget), InObjectType, InInvalidationReasonPredicate, InComparePredicate, [ESlateAttributeType::Managed](API\Runtime\SlateCore\Types\Attributes\SlateAttributePrivate__ESlateAtt-) > Super | [] |
|
TSlateManagedAttribute::Unbind | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | void Unbind() | [] |
|
TSlateManagedAttribute::UpdateNow | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | void UpdateNow() | [] |
|
TSlateManagedAttribute::TSlateManagedAttribute | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | TSlateManagedAttribute() | [] |
|
TSlateManagedAttribute::TSlateManagedAttribute | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | TSlateManagedAttribute ( [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > Widget, [FGetter](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\FGetter) && Getter, [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\ObjectType) && InitialValue ) | [] |
|
TSlateManagedAttribute::TSlateManagedAttribute | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | TSlateManagedAttribute ( [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > Widget, const [TAttribute](API\Runtime\Core\Misc\TAttribute)< [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\ObjectType) > & Attribute, const [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\ObjectType) & InitialValue ) | [] |
|
TSlateManagedAttribute::TSlateManagedAttribute | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | TSlateManagedAttribute ( [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > Widget, [TAttribute](API\Runtime\Core\Misc\TAttribute)< [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\ObjectType) > && Attribute, [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\ObjectType) && InitialValue ) | [] |
|
TSlateManagedAttribute::TSlateManagedAttribute | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | TSlateManagedAttribute ( const [TSlateManagedAttribute](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute) & ) | [] |
|
TSlateManagedAttribute::TSlateManagedAttribute | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | TSlateManagedAttribute ( [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > Widget ) | [] |
|
TSlateManagedAttribute::TSlateManagedAttribute | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | TSlateManagedAttribute ( [TSlateManagedAttribute](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute) && Other ) | [] |
|
TSlateManagedAttribute::TSlateManagedAttribute | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | TSlateManagedAttribute ( [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > Widget, const [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\ObjectType) & InValue ) | [] |
|
TSlateManagedAttribute::TSlateManagedAttribute | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | TSlateManagedAttribute ( [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > Widget, const [FGetter](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\FGetter) & Getter, const [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\ObjectType) & InitialValue ) | [] |
|
TSlateManagedAttribute::TSlateManagedAttribute | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | TSlateManagedAttribute ( [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > Widget, const [FGetter](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\FGetter) & Getter, [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\ObjectType) && InitialValue ) | [] |
|
TSlateManagedAttribute::TSlateManagedAttribute | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | TSlateManagedAttribute ( [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > Widget, [FGetter](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\FGetter) && Getter, const [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\ObjectType) & InitialValue ) | [] |
|
TSlateManagedAttribute::~TSlateManagedAttribute | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | ~TSlateManagedAttribute() | [] |
|
TSlateManagedAttribute | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | TSlateManagedAttribute< FText, EInvalidateWidgetReason::None > | SlateCore | template<typename InObjectType, typename InInvalidationReasonPredicate, typename InComparePredicate> struct TSlateManagedAttribute : protected [SlateAttributePrivate::TSlateAttributeBase< SWidget, InObjectType, InInvalidationReasonPredicate, InComparePredicate, ESlateAttributeType::Managed >](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase) | [] |
FGetter | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeMember.inl | SlateCore | typedef typename [Super::FGetter](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\FGetter) FGetter | [] |
|
TSlateManagedAttribute::TSlateManagedAttribute | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeManaged.inl | SlateCore | TSlateManagedAttribute ( [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > Widget, [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateManagedAttribute\ObjectType) && InValue ) | [] |
|
ObjectType | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeMember.inl | SlateCore | typedef typename [Super::ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase\ObjectType) ObjectType | [] |
|
TSlateMemberAttribute::operator new | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeMember.inl | SlateCore | void * operator new ( size_t ) | [] |
|
TSlateMemberAttribute::operator new[] | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeMember.inl | SlateCore | void * operator new[] ( size_t ) | [] |
|
TSlateMemberAttribute::operator= | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeMember.inl | SlateCore | [TSlateMemberAttribute](API\Runtime\SlateCore\Types\Attributes\TSlateMemberAttribute) & operator= ( const [TSlateMemberAttribute](API\Runtime\SlateCore\Types\Attributes\TSlateMemberAttribute) & ) | [] |
|
TSlateMemberAttribute::operator= | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeMember.inl | SlateCore | [TSlateMemberAttribute](API\Runtime\SlateCore\Types\Attributes\TSlateMemberAttribute) & operator= ( [TSlateMemberAttribute](API\Runtime\SlateCore\Types\Attributes\TSlateMemberAttribute) && ) | [] |
|
Super | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeMember.inl | SlateCore | typedef [TSlateAttributeBase](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget), InObjectType, InInvalidationReasonPredicate, InComparePredicate, [ESlateAttributeType::Member](API\Runtime\SlateCore\Types\Attributes\SlateAttributePrivate__ESlateAtt-) > Super | [] |
|
TSlateMemberAttribute::TSlateMemberAttribute | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeMember.inl | SlateCore | TSlateMemberAttribute() | [] |
|
TSlateMemberAttribute::TSlateMemberAttribute | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeMember.inl | SlateCore | TSlateMemberAttribute ( [TSlateMemberAttribute](API\Runtime\SlateCore\Types\Attributes\TSlateMemberAttribute) && ) | [] |
|
TSlateMemberAttribute::TSlateMemberAttribute | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeMember.inl | SlateCore | TSlateMemberAttribute ( const [TSlateMemberAttribute](API\Runtime\SlateCore\Types\Attributes\TSlateMemberAttribute) & ) | [] |
|
TSlateMemberAttribute::TSlateMemberAttribute | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeMember.inl | SlateCore | template<typename WidgetType, typename U> TSlateMemberAttribute ( WidgetType & Widget ) | [] |
|
TSlateMemberAttribute::TSlateMemberAttribute | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeMember.inl | SlateCore | template<typename WidgetType, typename U> TSlateMemberAttribute ( WidgetType & Widget, const [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateMemberAttribute\ObjectType) & InValue ) | [] |
|
TSlateMemberAttribute::TSlateMemberAttribute | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeMember.inl | SlateCore | template<typename WidgetType, typename U> TSlateMemberAttribute ( WidgetType & Widget, [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateMemberAttribute\ObjectType) && InValue ) | [] |
|
TSlateMemberAttribute | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeMember.inl | SlateCore | template<typename InObjectType, typename InInvalidationReasonPredicate, typename InComparePredicate> struct TSlateMemberAttribute : public [SlateAttributePrivate::TSlateAttributeBase< SWidget, InObjectType, InInvalidationReasonPredicate, InComparePredicate, ESlateAttributeType::Member >](API\Runtime\SlateCore\Types\Attributes\TSlateAttributeBase) | [] |
|
AttributeType | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeMember.inl | SlateCore | typedef [TAttribute](API\Runtime\Core\Misc\TAttribute)< [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateMemberAttributeRef\ObjectType) > AttributeType | [] |
|
TSlateMemberAttributeRef::Get | /Engine/Source/Runtime/SlateCore/Public/Types/Attributes/SlateAttributeMember.inl | the SlateAttribute cached value; undefined whenIsValid()returns false. | SlateCore | UE_NODISCARD const [ObjectType](API\Runtime\SlateCore\Types\Attributes\TSlateMemberAttributeRef\ObjectType) & Get() const | [] |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.