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