Hide Parent Interp Property in Sequencer [C++]

Hello !

Anybody knows how to hide a parent property tagged “Interp” in Sequencer ? I’ve managed to hide the property in details panel thanks to CustomizeDetails method, but it still appears in the sequencer dropdown menu…

I’m trying to subclass the CineCameraComponent, I’ve managed to hide from sequencer “CurrentFocalLength” property because it has a setter “SetCurrentFocalLength” and with the property metadata “HideFunctions” it seems to work for this case, but can’t find a way when the property have no custom setter like “CurrentAperture”.

If anyone have a glimpse of an idea, I’m in!
Thanks

Finally, “SetCurrentAperture” in “HideFunctions” metadata works as expected, I just spelled it wrong …