Navigation
API > API/Plugins > API/Plugins/RemoteControl > API/Plugins/RemoteControl/URemoteControlPropertyIdRegistry
References
| Module | RemoteControl |
| Header | /Engine/Plugins/VirtualProduction/RemoteControl/Source/RemoteControl/Public/RemoteControlPropertyIdRegistry.h |
| Include | #include "RemoteControlPropertyIdRegistry.h" |
| Source | /Engine/Plugins/VirtualProduction/RemoteControl/Source/RemoteControl/Private/RemoteControlPropertyIdRegistry.cpp |
bool Contains
(
FName InContainerPropertyId,
FName InTargetPropertyId
) const
Remarks
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. 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 | Description |
|---|---|
| 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. |