Icon Port for GoTextNode

Hi Walter,
Tell me how to create an icon port of an node and how to change the icon port when I change an custom property of the link of the node.

Take a look at the ActivityPort example class in ActivityNode of the Processor sample application. Although the sample application doesn’t make use of it, you could set the ActivityPort.PortImage property.
ActivityPort.OnLinkChanged also demonstrates how to change the appearance of a port as links are added or removed.
Look also at the LimitedNodePort example class used by LimitedNode in the Demo1 sample. You can see how adding or removing links changes the color of the port, by LimitedNodePort’s override of OnLinkChanged.

Thank for your supporting
I’ll try it