Fill Property [BarMap, PieMap]

 

Fill returns the fill properties of the specified variable. Returns a FillFormat object. This is a read-only property.

 

Syntax

object.Fill( VariableIndex )

 

Parameter

Type

Description

VariableIndex

Integer

required; variable number

 

Example 1

This example sets the first variable foreground color to purple for a bar map.

 

BarMap.Fill(1).ForeColor = mvColorPurple

 

Example 2

This example sets the second variable fill pattern to "diagonal cross" for a pie map.

 

PieMap.Fill(2). Pattern="Diagonal Cross"

 

Used by: BarMap object, PieMap object