Clone

Top  Previous  Next

This method clones an existing network in memory. This is faster than opening the same network twice, but for different purposes.

 

Example:

NW:= TNetwork.create;

NW.open(....);

NW2:= TNetwork.create;

NW.clone(NW2);

 

It clones all elements, including limits, roadnames etc.

 

Syntax: Clone(NW: TNetwork);