And Command

Input: One or two DV layers (containing polygons)

Output: DV layer (containing polygons)

Description: Creates and returns a DV layer that contains geometry generated on the overlap of original geometry on the input layer(s). This is a symmetric operation. The order of the input layers does not change the results.

Rule Set Example (JScript):

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

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

var andLayer = DVChecker.And(layer1);

var andLayer2 = DVChecker.And(andLayer);

var andLayer3 = DVChecker.And(layer1, layer2);