BlankMissing Property
BlankMissing returns or sets the flag to Don't draw missing nodes in a surface map. Returns a Boolean. If the value is 'True', NoData values are not drawn. If the value is 'False', NoData nodes are remapped to the value set by the ZMissing property.
Syntax
object.BlankMissing
object.BlankMissing = Blank
Parameter |
Type |
Description |
Blank |
Boolean |
required, True=Don't draw (blank) and |
Remarks
Refer to zMissing to set the value when remapping NoData nodes ( object.BlankMissing = False)
Example 1
This example shows how to return whether the missing nodes are drawn (blank) or remapped (false).
Debug .Print "BlankMissing = "; SurfaceLayer.BlankMissing
Example 2
This example shows how to set the missing values to remap.
SurfaceLayerMap.BlankMissing = False
SurfaceLayer.zMissing = 1000
Used by: Surface object