ErrorBars.EndStyle property (Word)

Returns or sets the end style for the error bars. Read/write Long.

Syntax

expression.EndStyle

expression A variable that represents an 'ErrorBars' object.

Remarks

The value of this property can be one of the following XlEndStyleCap constants:

  • xlCap

  • xlNoCap

Example

The following example sets the end style for the error bars for series one of the first chart in the active document. You should run the example on a 2D line chart that has Y error bars for the first series.

With ActiveDocument.InlineShapes(1) 
 If .HasChart Then 
 .Chart.SeriesCollection(1).ErrorBars.EndStyle = xlCap 
 End If 
End With

See also

ErrorBars Object

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.