Harness proD API Help
EPLAN.Harness.API.Projects.Documents Namespace / Designer Class / Route Method / Route(IEnumerable<IRoutable>,IEnumerable<IOccCableTray>) Method
Objects that will be routed.
Cable trays for routing.
Example
In This Topic
    Route(IEnumerable<IRoutable>,IEnumerable<IOccCableTray>) Method
    In This Topic
    Route selected objects through given cable trays.
    Syntax

    Parameters

    objects
    Objects that will be routed.
    trays
    Cable trays for routing.
    Exceptions
    ExceptionDescription
    Api is not in an initialized state. You can get current state from EPLAN.Harness.API.Studio.Status property. If API is uninitialized, you can initialize it by calling EPLAN.Harness.API.Studio.Init method. If API is in failed state, you can not resurrect it.
    The object is in invalid state. Obtain a new one.
    This operation was denied because of your license.
    Argument is invalid. The exception is thrown when a wrong argument is passed to the method or the setter of property.
    This file is not opened.
    Thrown when the occurrence is not part of this document.
    Thrown when you try to route a cable wire.
    Thrown when you try to route a routable occurrence through the same tray it is already routed through.
    Example
    This example shows how to use route function on selected objects.
    Workspace workspace = ...
    
    // Obtain routable occurrences which you want to route.
    IRoutable wire = ...
    IRoutable bundle = ...
    
    // Obtain trays you want to route the objects through.
    IOccCableTray tray1 = ...
    IOccCableTray tray2 = ...
    
    // Route the objects through the bundles.
    workspace.Route(new List<IRoutable>() { bundle, wire }, new List<IRouteOrganizer>() { tray1, tray2 });
    See Also