LineFormat object (Publisher)
Represents line and arrowhead formatting. For a line, the LineFormat object contains formatting information for the line itself; for a shape with a border, this object contains formatting information for the shape's border.
Remarks
Use the Shape.Line property to return a LineFormat object.
Example
The following example adds a blue, dashed line to the active document. There is a short, narrow oval at the line's starting point and a long, wide triangle at its endpoint.
Sub FormatLine()
With ActiveDocument.Pages(1).Shapes.AddLine(BeginX:=100, _
BeginY:=100, EndX:=200, EndY:=300).Line
.DashStyle = msoLineDashDotDot
.ForeColor.RGB = RGB(50, 0, 128)
.BeginArrowheadLength = msoArrowheadShort
.BeginArrowheadStyle = msoArrowheadOval
.BeginArrowheadWidth = msoArrowheadNarrow
.EndArrowheadLength = msoArrowheadLong
.EndArrowheadStyle = msoArrowheadTriangle
.EndArrowheadWidth = msoArrowheadWide
End With
End Sub
Methods
Properties
- Application
- BackColor
- BeginArrowheadLength
- BeginArrowheadStyle
- BeginArrowheadWidth
- CapStyle
- DashStyle
- EndArrowheadLength
- EndArrowheadStyle
- EndArrowheadWidth
- ForeColor
- GradientAngle
- GradientColorType
- GradientStyle
- GradientVariant
- InsetPen
- JoinStyle
- Parent
- Pattern
- PresetGradientType
- Style
- Transparency
- Type
- Visible
- Weight
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.