The Width property returns or sets the bar width for a bar map. Returns a double.
Syntax
object.Width( VariableIndex )
object.Width( VariableIndex ) = Width
Parameter |
Type |
Description |
VariableIndex |
Integer |
required; variable number |
Width |
Double |
required; in page units |
Example 1
This example returns the bar width for the first variable.
Debug.Print BarMap.Width(1)
Example 2
This example sets the first variable to 0.2.
BarMap.Width(1)=0.2
Used by: BarMap object