![]() |
UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
|
| int32 TypedElementListObjectUtil::CountObjects | ( | FTypedElementListConstRef | InElementList | ) |
Count the number of objects in the given list of elements.
| TYPEDELEMENTRUNTIME_API int32 TypedElementListObjectUtil::CountObjects | ( | FTypedElementListConstRef | InElementList, |
| const UClass * | InRequiredClass = nullptr |
||
| ) |
Count the number of objects in the given list of elements.
| bool TypedElementListObjectUtil::CountObjectsOfExactClass | ( | FTypedElementListConstRef | InElementList | ) |
Count the number of objects of the exact class in the given list of elements (a quick test using the class counter, skipping derived types).
| TYPEDELEMENTRUNTIME_API int32 TypedElementListObjectUtil::CountObjectsOfExactClass | ( | FTypedElementListConstRef | InElementList, |
| const UClass * | InClass | ||
| ) |
Count the number of objects of the exact class in the given list of elements (a quick test using the class counter, skipping derived types).
| void TypedElementListObjectUtil::ForEachObject | ( | FTypedElementListConstRef | InElementList, |
| TFunctionRef< bool(RequiredClassType *)> | InCallback | ||
| ) |
Enumerate the objects from the given list of elements.
| TYPEDELEMENTRUNTIME_API void TypedElementListObjectUtil::ForEachObject | ( | FTypedElementListConstRef | InElementList, |
| TFunctionRef< bool(UObject *)> | InCallback, | ||
| const UClass * | InRequiredClass = nullptr |
||
| ) |
Enumerate the objects from the given list of elements.
| TYPEDELEMENTRUNTIME_API void TypedElementListObjectUtil::ForEachObjectClass | ( | FTypedElementListConstRef | InElementList, |
| TFunctionRef< bool(UClass *)> | InCallback | ||
| ) |
Enumerate the classes of the objects in the given list of elements.
| RequiredClassType * TypedElementListObjectUtil::GetBottomObject | ( | FTypedElementListConstRef | InElementList | ) |
Get the last object of the given type from the given list of elements.
| TYPEDELEMENTRUNTIME_API UObject * TypedElementListObjectUtil::GetBottomObject | ( | FTypedElementListConstRef | InElementList, |
| const UClass * | InRequiredClass = nullptr |
||
| ) |
Get the last object of the given type from the given list of elements.
| UObject * TypedElementListObjectUtil::GetObjectOfType | ( | const TTypedElement< ITypedElementObjectInterface > & | InObjectElement, |
| const UClass * | InRequiredClass | ||
| ) |
| TArray< RequiredClassType * > TypedElementListObjectUtil::GetObjects | ( | FTypedElementListConstRef | InElementList | ) |
Get the array of objects from the given list of elements.
| TYPEDELEMENTRUNTIME_API TArray< UObject * > TypedElementListObjectUtil::GetObjects | ( | FTypedElementListConstRef | InElementList, |
| const UClass * | InRequiredClass = nullptr |
||
| ) |
Get the array of objects from the given list of elements.
| RequiredClassType * TypedElementListObjectUtil::GetTopObject | ( | FTypedElementListConstRef | InElementList | ) |
Get the first object of the given type from the given list of elements.
| TYPEDELEMENTRUNTIME_API UObject * TypedElementListObjectUtil::GetTopObject | ( | FTypedElementListConstRef | InElementList, |
| const UClass * | InRequiredClass = nullptr |
||
| ) |
Get the first object of the given type from the given list of elements.
| bool TypedElementListObjectUtil::HasObjects | ( | FTypedElementListConstRef | InElementList | ) |
Test whether there are any objects in the given list of elements.
| TYPEDELEMENTRUNTIME_API bool TypedElementListObjectUtil::HasObjects | ( | FTypedElementListConstRef | InElementList, |
| const UClass * | InRequiredClass = nullptr |
||
| ) |
Test whether there are any objects in the given list of elements.
| bool TypedElementListObjectUtil::HasObjectsOfExactClass | ( | FTypedElementListConstRef | InElementList | ) |
Test if there are any objects of the exact class in the given list of elements (a quick test using the class counter, skipping derived types).
| TYPEDELEMENTRUNTIME_API bool TypedElementListObjectUtil::HasObjectsOfExactClass | ( | FTypedElementListConstRef | InElementList, |
| const UClass * | InClass | ||
| ) |
Test if there are any objects of the exact class in the given list of elements (a quick test using the class counter, skipping derived types).