ErrorBars.EndStyle Property (PowerPoint)
Returns or sets the end style for the error bars. Read/write Long.
Version Information
Version Added: PowerPoint 2007
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
Note
Although the following code applies to Microsoft Word, you can readily modify it to apply to PowerPoint.
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 2-D 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