Skip to content

Latest commit

 

History

History
57 lines (37 loc) · 1.17 KB

Word.ChartGroup.HasDropLines.md

File metadata and controls

57 lines (37 loc) · 1.17 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
ChartGroup.HasDropLines property (Word)
vbawd10.chm263454730
vbawd10.chm263454730
Word.ChartGroup.HasDropLines
34743dd3-73f6-d125-a240-23984d31fa47
06/08/2017
medium

ChartGroup.HasDropLines property (Word)

True if the line chart or area chart has drop lines. Read/write Boolean.

Syntax

expression.HasDropLines

expression A variable that represents a ChartGroup object.

Remarks

This property applies only to line and area charts.

Example

The following example enables drop lines for chart group one of the first chart in the active document and then sets their line style, weight, and color. You should run the example on a 2D line chart that has one series.

With ActiveDocument.InlineShapes(1) 
 If .HasChart Then 
 With .Chart.ChartGroups(1) 
 .HasDropLines = True 
 With .DropLines.Border 
 .LineStyle = xlThin 
 .Weight = xlMedium 
 .ColorIndex = 3 
 End With 
 End With 
 End If 
End With

See also

ChartGroup Object

[!includeSupport and feedback]