- 精华
- 活跃值
-
- 积分
- 2536
- 违规
-
- 印币
-
- 鲜花值
-
- 在线时间
- 小时
累计签到:154 天 连续签到:1 天
|
Sub ÅúÁ¿¼Ó¿ò()
Dim S As Shape, s1 As Shape, sr As ShapeRange, s2 As ShapeRange
ActiveDocument.Unit = CDRMillimeter
Dim sx#, sy#, sw#, sh#
Set sr = ActiveSelection.Shapes.All 'Ñ¡ÖеÄËùÓжÔÏó¸÷¼ÓÒ»¸ö¿ò
For Each S In sr
S.GetBoundingBox sx, sy, sw, sh
Set s1 = ActiveLayer.CreateRectangle2(sx - 3, sy - 3, sw + 6, sh + 6)
s1.Fill.ApplyNoFill
s1.Outline.SetProperties 0.076
s1.Outline.SetProperties Color:=CreateCMYKColor(0, 0, 0, 100)
s1.Outline.SetNoOutline
Next S
End Sub
|
|