我正在为 Word 2007 编写 VBA。
我创建了一个用户窗体,我需要用脚本调整它的大小。
我注意到它不是像素
Me.Width = pixelW // form appears about 20% larger than the pixel width
它也不是缇
Me.Width = (((1 / TwipsPerPixelX()) * pixelW)) / 1) // form appears very small
那么在 Office 2007 VBA 中如何测量表单的宽度和高度呢?