InsideHeight、InsideWidth 属性示例
以下示例使用 InsideHeight 和 InsideWidth 属性调整 CommandButton 的大小。 用户单击 CommandButton 可调整其大小。
注意
[!注释] InsideHeight 和 InsideWidth 是只读属性。
若要使用此示例,请将此示例代码复制到窗体的声明部分。 确保该窗体包含:
- 一个名为"CommandButton1"的 CommandButton 。
Dim Resize As Single
Private Sub UserForm_Initialize()
Resize = 0.75
CommandButton1.Caption = "Resize Button"
End Sub
Private Sub CommandButton1_Click()
CommandButton1.Move 10, 10, _
UserForm1.InsideWidth * Resize, _
UserForm1.InsideHeight * Resize
CommandButton1.Caption = "Button resized " _
& "using InsideHeight and InsideWidth!"
End Sub
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。