bdeSetPortShape
Sets the shape of a port.
Syntax
bdeSetPortShape(port, shape)
Inputs
- port
 - The port that will it's have shape set.
 - shape
 - The shape to set for the port. Can use strings such as 'triangle', 'rectangle', or 'ellipse'. Can also use the type hwdc::GraphicsType.
 
Examples
          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          portList = bdeGetPortsOnBlock(block);
          portX = portList{[1, 1]};
          bdeSetPortShape(portX, 'rectangle');