Harness proD API Help
EPLAN.Harness.API.Projects.Documents Namespace / Designer Class / UnRoute Method
Objects that will be unrouted.
Example
In This Topic
    UnRoute Method (Designer)
    In This Topic
    Unroute selected routable objects.
    Syntax
    public void UnRoute( 
       IEnumerable<ISegmentRoutable> objects
    )

    Parameters

    objects
    Objects that will be unrouted.
    Exceptions
    ExceptionDescription
    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.
    Thrown when you try to unroute a cable wire.
    Example
    This example shows how to use the unroute function on selected objects.
    Workdesk workdesk = ...
    
    // Obtain routable occurrences which you want to unroute.
    IRoutable wire = ...
    IRoutable cable = ...
    
    // Unroute the selected objects.
    wordesk.UnRoute(new IRoutable[] { wire, cable });
    See Also