Horizontal GoMultiTextNode?

How to create a node that displays three text items side-by-side instead of the usual vertical list (stack)? In other words I need

| txtA | txtB | txtC |
NOT...
------
txtA
------
txtB
------
txtC
------
I tried GoMultiTextNode mtn = new GoMultiTextNode(); mtn.ListGroup.Orientation = Orientation.Horizontal;
but it didn't work.
First time using GoDiagram. Using v 4.1 WinForms .Net

<?:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />

Yes, the GoListGroup inside GoMultiTextNode forces Vertical (because of the way ports get attached to each row, it wouldn’t make much sense horizontally).



You can put a GoListGroup in a GoNode. Where do you want ports on this node?

I would want just two ports, a left and a right. The “incoming” port is on the left, and the “outgoing” port on the right.

Answered in e-mail. InfoNode4 from NodeLinkDemo is a good starting point.