Harness proD API Help
EPLAN.Harness.API.Projects.Documents Namespace / Designer Class / AddNewWireHarness Method
Occurrences that will be added to the newly created wire harness.
Example
In This Topic
    AddNewWireHarness Method
    In This Topic
    Syntax

    Parameters

    occurrences
    Occurrences that will be added to the newly created wire harness.

    Return Value

    Created wire harness.
    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 file is not opened.
    Thrown when the occurrence is not part of this document.
    Example
    This example shows how to add a new empty wire harness to the workspace.
    Workspace workspace = ...
    
    IOccWireHarness wireHarness = workspace.AddNewWireHarness();
    This example shows how to add a new wire harness with some occurrences.
    Workdesk workdesk = ...
    
    // Occurrences from this wordesk:
    IWireHarnessAddable connector = ...
    IWireHarnessAddable wire = ...
    
    IOccWireHarness wireHarness = workdesk.AddNewWireHarness(new[] { connector, wire });
    See Also