Harness proD API Help
EPLAN.Harness.API.Projects.Documents Namespace / Designer Class / AutoRoute Method
Objects which will be routed.
Example
In This Topic
    AutoRoute Method (Designer)
    In This Topic
    Automatically route selected routable objects.
    Syntax
    public void AutoRoute( 
       IEnumerable<IAutoRoutable> objects
    )

    Parameters

    objects
    Objects which will be routed.
    Exceptions
    ExceptionDescription
    Thrown when you try to route a cable wire.
    Api is not in an initialized state. You can get current state from EPLAN.Harness.API.HpdApi.Status property. If API is uninitialized, you can initialize it by calling EPLAN.Harness.API.HpdApi.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.
    This file is not opened.
    Thrown when the occurrence is not part of this document.
    Example
    This example shows how to automatically route selected routable occurrences.
    Workdesk workdesk = ...
    
    // Obtain routable occurrences which you want to route.
    IRoutable wire1 = ...
    IRoutable wire2 = ...
    IRoutable cable = ...
    
    
    workdesk.AutoRoute(new[] { wire1, wire2, cable });
    See Also