Levels Property
Returns the contour Levels collection. This is a read-only property.
Syntax
object.Levels
Example
This example demonstrates how to create contour levels in intervals of ten ranging from 0 to 100.
'Returns the Levels collection object.
Set ContourLevels = ContourLayer.Levels
'Uses the Levels collection to assign contour intervals.
ContourLevels.AutoGenerate(MinLevel:=0, MaxLevel:=100, Interval:=10)
Used by: ContourLayer Object