一种cdr图纸编号批量处理方法

该代码段详细描述了一个VBA宏,用于在Word文档中自动填充页眉,设置垫白层矩形、字体和颜色。它涉及到文档单位转换、页面尺寸操作和文本对象创建。
摘要由CSDN通过智能技术生成

Sub pFillTH()

th = Left(ActiveDocument.Name, InStrRev(ActiveDocument.Name, ".", -1) - 1)

For Each pg In ActiveDocument.Pages

    i = i + 1

    qz = Left(th, Len(th) - 1)

    xh = Right(th, 1) + i - 1

    xth = qz & xh

‘设置文档单位为mm

    ActiveDocument.Unit = cdrMillimeter

    pgWidth = pg.SizeWidth - 2

’设置垫白层为矩形及尺寸

    Dim s0 As Shape

    Set s0 = pg.ActiveLayer.CreateRectangle(140, 4, 169, 1)

    With s0

    .Outline.SetNoOutline

    .Fill.UniformColor.CMYKAssign 0, 0, 0, 0

    End With

    ActiveDocument.ReferencePoint = cdrBottomRight

    s0.SetPosition pgWidth, 2

‘设置填充字体及样式

    Dim s1 As Shape

    Set s1 = pg.ActiveLayer.CreateArtisticText(0, 0, xth, , , "Arial", 6)

    With s1

    .Fill.UniformColor.CMYKAssign 0, 0, 0, 100

    .Outline.SetNoOutline

    End With

    ActiveDocument.ReferencePoint = cdrBottomRight

    s1.SetPosition pgWidth, 2

Next

ActiveDocument.Save

End Sub

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值