ConnectLineOperator.ConnectConditions Property
Gets the collection that contains the ConnectCondition elements that divide features into subsets that the ConnectLineOperator will try to connect.
Syntax
public ConnectConditionCollection ConnectConditions { get; }
Property Value
Default: Empty collection.
The connect conditions that determine which features the operator will try to connect.
Remarks
If you use several connect conditions, they will behave as alternatives: two line features may be connected if their attributes satisfy one of the connect conditions. To satisfy one connect condition, two line features must have the same value for all attributes specified in the connect condition.
// Add two connect conditions to the ConnectLineOperator. The first condition
// will connect all lines with the same STREET_NAME and SPEED_LIMIT values and
// the second condition will connect lines that have the same HIGHWAY_NAME value
ConnectCondition connectCondition1 = new ConnectCondition();
connectCondition1.Attributes.Add(new Atom("STREET_NAME"));
connectCondition1.Attributes.Add(new Atom("SPEED_LIMIT"));
ConnectCondition connectCondition2 = new ConnectCondition();
connectCondition2.Attributes.Add(new Atom("HIGHWAY_NAME"));
connectLineOp.ConnectConditions.Add(connectCondition1);
connectLineOp.ConnectConditions.Add(connectCondition2);
Platforms
Windows, Linux, Android