Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
参考
我正在使用ActiveSheet.Buttons.Add()将格式控制按钮添加到工作表。当我必须添加几个按钮之间有一定的水平距离并且列宽发生变化时,这种方法会受到影响,从而导致按钮之间的轻微漂移。
ActiveSheet.Buttons.Add()
我想改用单元格引用来防止由列宽变化引起的这种漂移。
语法是
ActiveSheet.Buttons.Add BUTTON_LEFT, BUTTON_TOP, _ BUTTON_WIDTH, BUTTON_HEIGHT
这将在活动单元格上创建一个按钮。尽可能改变。
ActiveSheet.Buttons.Add ActiveCell.Left, ActiveCell.Top, _ ActiveCell.Width, ActiveCell.Height
编辑:被蒂姆打败了!