Skip to content

Latest commit

 

History

History
57 lines (35 loc) · 1.2 KB

Word.Point.MarkerBackgroundColor.md

File metadata and controls

57 lines (35 loc) · 1.2 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Point.MarkerBackgroundColor property (Word)
vbawd10.chm262144073
vbawd10.chm262144073
Word.Point.MarkerBackgroundColor
629e0174-4590-3531-23ae-6093e9ca77a1
06/08/2017
medium

Point.MarkerBackgroundColor property (Word)

Sets the marker background color as an RGB value or returns the corresponding color index value. Read/write Long.

Syntax

expression.MarkerBackgroundColor

expression A variable that represents a 'Point' object.

Remarks

This property applies only to line, scatter, and radar charts.

Example

The following example sets the marker background and foreground colors for the second point in series one for the first chart in the active document.

With ActiveDocument.InlineShapes(1) 
 If .HasChart Then 
 With .Chart.SeriesCollection(1).Points(2) 
 ' Set the background color to green. 
 .MarkerBackgroundColor = RGB(0,255,0) 
 
 ' Set the foreground color to red. 
 .MarkerForegroundColor = RGB(255,0,0) 
 End With 
 End If 
End With 

See also

Point Object

[!includeSupport and feedback]