Name 属性示例
以下示例显示窗体上每个控件的 Name 属性。 此示例使用 Controls 集合循环访问直接放置在 Userform 上的所有控件。
若要使用此示例,请将此示例代码复制到窗体的 Declarations 部分。 确保窗体包含名为 CommandButton1 的 CommandButton 以及几个其他控件。
Private Sub CommandButton1_Click()
Dim MyControl As Control
For Each MyControl In Controls
MsgBox "MyControl.Name = " & MyControl.Name
Next
End Sub
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。