iOS Question Sanity check: Isn't ".SetVisibleAnimated(0, True)" and ".Visible = True" the same?

Sandman

Expert
Licensed User
Longtime User
Shouldn't these two in effect do the same thing?
B4X:
myPanel.SetVisibleAnimated(0, True)
    
myPanel.Visible = True

I have a situation where I used the bottom one, because that worked fine in B4A and B4J. However, in B4i I need to use the top one to make the panel visible.

(If it matters, the panel is initially visible and then faded to not visible using .SetVisibleAnimated(3000, False).)
 
Top