Navigation
API > API/Plugins > API/Plugins/RemoteControl > API/Plugins/RemoteControl/IRemoteControlModule
References
| Module | RemoteControl |
| Header | /Engine/Plugins/VirtualProduction/RemoteControl/Source/RemoteControl/Public/IRemoteControlModule.h |
| Include | #include "IRemoteControlModule.h" |
bool PropertySupportsRawModification
(
FProperty * InProperty,
const UObject * InObject,
const bool bInWithEditor,
FString * OutError
) const
Remarks
Returns whether the property can be modified through SetObjectProperties or read through ResolveObjectProperties when running with or without an editor. True if the property is supported both for read and write, false otherwise
Parameters
| Name | Description |
|---|---|
| InProperty | Property to check |
| InObject | Object that owns the property |
| bInWithEditor | True if it should check if the property is supported in Editor, false to check for Packaged |
| OutError | Will contain the error in case it is not supported |