The SetClassUserLimits method sets the class user limits state and values for a prism map. MinVal and MaxVal are ignored if ApplyUserLimits is False.
Syntax
object.SetClassUserLimits( ApplyUserLimits, MinVal, MaxVal )
Parameter |
Type |
Description |
ApplyUserLimits |
Boolean |
required; true to use user-defined limits |
MinVal |
Double |
optional, default value is 0 |
MaxVal |
Double |
optional, default value is 10000000 |
Example
This sets the class limits for a prism map to a minimum value of 500 and a maximum value of 45,000.
PrismMap.SetClassUserLimits(ApplyUserLimits:=True, MinVal:=500, MaxVal:=45000)
Used by: PrismMap object, TerritoryMap object