Word) (Shape.Line 属性
返回一个 LineFormat 对象包含行格式设置为指定的形状的属性。 此为只读属性。
语法
表达式。线
表达 一个代表 Shape 对象的变量。
备注
对于线条, LineFormat 对象代表线条本身;具有边框的形状, LineFormat 对象表示的边框。
示例
以下示例向 myDocument 添加一条蓝色虚线。
Set myDocument = ActiveDocument
With myDocument.Shapes.AddLine(10, 10, 250, 250).Line
.DashStyle = msoLineDashDotDot
.ForeColor.RGB = RGB(50, 0, 128)
End With
以下示例向 myDocument 添加一个十字形,然后将其边框粗细设置为 8 磅、颜色为红色。
Set myDocument = ActiveDocument
With myDocument.Shapes.AddShape(msoShapeCross, 10, 10, 50, 70).Line
.Weight = 8
.ForeColor.RGB = RGB(255, 0, 0)
End With
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。