Navigation
API > API/Plugins > API/Plugins/RemoteControl > API/Plugins/RemoteControl/URemoteControlPropertyIdRegistry
Description
Returns whether the 2 Ids are equal or if the Target one is contained in the Container one. ex: 100.A and 100 will return true but not the other way around.
| Name | Contains |
| Type | function |
| Header File | /Engine/Plugins/VirtualProduction/RemoteControl/Source/RemoteControl/Public/RemoteControlPropertyIdRegistry.h |
| Include Path | #include "RemoteControlPropertyIdRegistry.h" |
| Source | /Engine/Plugins/VirtualProduction/RemoteControl/Source/RemoteControl/Private/RemoteControlPropertyIdRegistry.cpp |
bool Contains
(
FName InContainerPropertyId,
FName InTargetPropertyId
) const
True if the PropertyIds are equal or if the Target one is contained in at least 1 sub-string of the Container one.
Parameters
| Name | Remarks |
|---|---|
| InContainerPropertyId | Container PropertyId, will create sub-string from this to later check if the target one is equal to one of them. |
| InTargetPropertyId | Target Id to check if it is part of the container one. |