Skip to content

Latest commit

 

History

History
57 lines (32 loc) · 1.11 KB

Word.ErrorBars.EndStyle.md

File metadata and controls

57 lines (32 loc) · 1.11 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
ErrorBars.EndStyle property (Word)
vbawd10.chm74843236
vbawd10.chm74843236
Word.ErrorBars.EndStyle
e0396671-1c83-c844-2ec3-e205ffda6ddf
06/08/2017
medium

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

[!includeSupport and feedback]