bdeSetLinkIntermediatePoints

Sets the points for a given link to pass through.

Syntax

bdeSetLinkIntermediatePoints(link, points)

Inputs

link
The link that will it's intermediate points set.
Type: hwdcConnection
points
Points to set the link to pass through.
Type: integer

Examples

Set the intermediate points of a link:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          explicitLink = bdeGetExplicitLink(diagram, block, 1, 'output');
          bdeSetLinkIntermediatePoints(explicitLink, [1, 2]);