想用VBA语句在ppt里面生产一个文本框,不是通过插入操作,怎么做

2025-03-14 01:00:09
推荐回答(1个)
回答1:

Private Sub CommandButton1_Click()
dim aa as shapes
set aa =Shapes.AddShape(1, 35, 30, 30, 25)
With aa
.Top = 200
.Left = 300
.Visible = msoFalse
End With
End Sub