Problem with DoF effect

I have Depth of Filed Scatter component (part of Pro version image effects) on my main camera and it works great. The problem is I can’t find a way of turning it off from script. I can disable the component in editor, however when I try thatDOFcomponent.enable = false the “enable” is not recognized (I can access other variables from that component without problem). I assumed that the “enable” variable was something basic inherited by every Unity component… Am I missing something obvious?

you’re just missing a d

thatDOFcomponent.enabled = false;