谁能用代码解释一下下面的For Each...In...语句?
Private FormOldWidth as Long
Private FormOldHeight as LongPublic sub a(Name as Form)
  Dim obj as Control
  
  FormOldWidth=Name.ScaleWidth
  FormOldHeight=Name.ScaleHeight  For Each obj In Name
      obj.Tag=obj.left & " " & obj.top & " " & obj.Width & " " & obj.Height & " "
  next obj
End sub