How to set Component to be not container for VoiceOver?

Hello,
I nave set my myComponent:

setFocusContainerType(Component::FocusContainerType::none);

And made the same for all children components.

And all children components have overriten method:

std::unique_ptr<AccessibilityHandler> SPEq_ToggleButton::createAccessibilityHandler()
{
    return Component::createIgnoredAccessibilityHandler(*this);
}

But on MacOS VoiceOver still allows me to step inside myComponent where there are no one meaningful components.

Is there any way to avoid that?

For any help great thanks in advance.