How can I start the game with a trigger box without collision?

Hello!
Perhaps, I am missing something simple and obvious, but I can not find a solution.
How can I spawn trigger box with disabled collision at the start of the game and then enable it via SetActorEnableCollision in the Blueprint?
I understand how to spawn TriggerBox WITH a collision and then toggle collision via Blueprint, but reverse task is difficult for me.
I’ve tried to spawn TriggerBox with collision, pinned window of collision properties of the TriggerBox on the screen and searched for any changing in the configuration when was toggling collision via Blueprint. But I did not find any property that was changed in the inspector, although in fact collision was toggled.
And so, I do not understand which property of TriggerBox in the inspector rules the initial collision of the actor for further toggling.

Under the TriggBox settings, Collision Preset, set value to Custom, and set Collision Enabled to No Collision.

BenVlodgi, thank you for your answer!
Unfortunately, this did not help. Perhaps it depends on the version of the engine. I am using 4.16.
Luckily, I found a solution!
There is EventBeginPlay node in the Blueprint, I used it.
So I left my TriggerBox with enabled collision by default, but on the start of the game it becomes disabled.

Setting the Collision Enabled should work in all versions, but yes you can also set the property OnBegin Play. You could also simply branch off of a boolean that you have initially as false in the OnHit, and when you want things to track, set it to true.