Harness proD API Help
EPLAN.Harness.API.Occurrences.CableDrawing Namespace / OccCdImage Class / Position Property
Example
In This Topic
    Position Property (OccCdImage)
    In This Topic
    Gets (or sets) the position of this occurrence.
    Syntax
    public Transform2DProperty<LengthProperty> Position {get; set;}
    Exceptions
    ExceptionDescription
    Api is not in an initialized state. You can get current state from Status property. If API is uninitialized, you can initialize it by calling Init(String,String[]) method. If API is in failed state, you can not resurrect it.
    The object is in invalid state. Obtain a new one.
    The exception that is thrown when you trying to access to already deleted occurrence.
    Thrown when this occurrence is anchored. Set the Anchored property of this occurrence to false to be able change the position.
    Remarks
    Position in X, Y and Z axes. Values are returned in default units.
    Example
    This example shows how to set a new position for an occurrence.
    // Obtain the occurrence.
    OccWsConnector connector = ...
    
    // Create a new position.
    TransformProperty<LengthProperty> position = new TransformProperty<LengthProperty>
    (
    	new LengthProperty(10, Unit.Millimeter),
    	new LengthProperty(-10, Unit.Millimeter),
    	new LengthProperty(0, Unit.Millimeter)
    );
    
    connector.Position = position;
    This example shows how to edit position of this occurrence.
    // Obtain the occurrence.
    OccWsConnector connector = ...
    
    // Get the actual position and edit only the X axis.
    TransformProperty<LengthProperty> position = connector.Position;
    position.X = new LengthProperty(50, Unit.Millimeter);
    
    connector.Position = position;
    See Also