我已更新到2016年Excel,并在2011年Excel开展工作的以下法典产生了这一错误。
Dim Commnt As Comment
For Each Commnt In Application.ActiveSheet.Comments Autosize all comment boxes on the sheet
Commnt.Shape.TextFrame.AutoSize = True
Next
如何使2016年Excel的所有工作表评论自动化?
经过进一步研究,我尝试取得了以下成果。
Dim Shp As Shape
For Each Shp In wks1.Shapes
With Shp.TextFrame2
.AutoSize = msoAutoSizeShapeToFitText
.WordWrap = msoTrue
End With
Next Shp