Navigation
API > API/Runtime > API/Runtime/TypedElementFramework > API/Runtime/TypedElementFramework/FSimpleQuery
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FSimpleQuery & IsObjectOf
(
RelationTypeHandle RelationType |
Filter to rows that are objects in relations of the given type. | Elements/Framework/TypedElementQueryBuilder.h | |
FSimpleQuery & IsObjectOf
(
RelationTypeHandle RelationType, |
Filter to rows that are objects in relations of the given type where the subject is the specified row. | Elements/Framework/TypedElementQueryBuilder.h |
IsObjectOf(RelationTypeHandle)
Description
Filter to rows that are objects in relations of the given type. E.g., IsObjectOf(SubclassOfType) finds all rows that have something inheriting from them.
| Name | IsObjectOf |
| Type | function |
| Header File | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementQueryBuilder.h |
| Include Path | #include "Elements/Framework/TypedElementQueryBuilder.h" |
| Source | /Engine/Source/Runtime/TypedElementFramework/Private/Elements/Framework/TypedElementQueryBuilder.cpp |
FSimpleQuery & IsObjectOf
(
RelationTypeHandle RelationType
)
IsObjectOf(RelationTypeHandle, RowHandle)
Description
Filter to rows that are objects in relations of the given type where the subject is the specified row. E.g., IsObjectOf(SubclassOfType, UDerivedClass) finds UDerivedClass's parent.
| Name | IsObjectOf |
| Type | function |
| Header File | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementQueryBuilder.h |
| Include Path | #include "Elements/Framework/TypedElementQueryBuilder.h" |
| Source | /Engine/Source/Runtime/TypedElementFramework/Private/Elements/Framework/TypedElementQueryBuilder.cpp |
FSimpleQuery & IsObjectOf
(
RelationTypeHandle RelationType,
RowHandle Subject
)