LevelMethod Property
LevelMethod sets or returns the contour layer level method. Returns a SrfConLevelMethod.
Syntax
object.LevelMethod
object.LevelMethod = LevelMethod
Parameter |
Type |
Description |
LevelMethod |
specifies the level method for the contour layer |
Remarks
The default level method is Advanced, i.e. LevelMethod = srfConLevelMethodAdvanced.
If LevelMethod is set to logarithmic (SrfConLevelMethodLogarithmic), the colormap ScalingMethod is automatically updated to logarithmic scaling (srfColorScalingLog).
Example 1
The following example demonstrates how to return the level method for a contour layer.
Debug.Print ContourLayer.LevelMethod
Example 2
The following example demonstrates how to change the level method to logarithmic.
ContourLayer.LevelMethod = SrfConLevelMethodLogarithmic
Used by: ContourLayer Object