Navigation
Unreal Engine C++ API Reference > Plugins > LevelSnapshotFilters > Builtin
References
|
|
Module |
LevelSnapshotFilters |
Header |
/Engine/Plugins/VirtualProduction/LevelSnapshots/Source/LevelShapshotFilters/Public/Builtin/PropertyHasNameFilter.h |
Include |
#include "Builtin/PropertyHasNameFilter.h" |
Syntax
namespace ENameMatchingRule
{
enum Type
&123;
MatchesExactly,
MatchesIgnoreCase,
ContainsExactly,
ContainsIgnoreCase,
&125;
}
Values
Name |
Description |
MatchesExactly |
The property name must match the given name exactly. |
MatchesIgnoreCase |
The name must match the given name but ignores the case |
ContainsExactly |
The name must contains the following substring (case sensitive) |
ContainsIgnoreCase |
The name must contains the following substring (case insensitive) |