This checkbox doesn't get recorded and there isn't an obvious command to turn it on or off in the vba intellisense. The best I can come up with is to toggle the space to zero
Code:
With Selection.Tables(1)
If .Spacing = 0 Then
.Spacing = CentimetersToPoints(0.5)
Else
.Spacing = 0
End If
End With