Not Command

Input: Two DV layers (containing polygons)

Output: DV layer (containing polygons)

Description: Creates and returns a DV layer that contains geometry generated on the first layer geometry areas that are not common to the second layer geometry. This is not a symmetric operation. The order of the input layers does change the results.

Rule Set Example (JScript):

var layer1 = DVChecker.ImportLayer("trace");

var layer2 = DVChecker.ImportLayer("ground");

var notLayer = DVChecker.Not(layer1, layer2);