Hi,
I'm currently creating a GoMultiTextNode using this:
GoMultiTextNode n = new GoMultiTextNode();n.Brush = new SolidBrush(Color.Beige);n.BorderPen = Pens.Black;n.ItemWidth = 120;fnGoText header = new fnGoText("Header");header.Height = 50;header.Alignment=GoText.BottomCenter;n.AddItem(header, null, null);
Then I add the other nodes, what I need is that the first node the GoText label appears on the bottom and have a image on the top. Can this be done?
Thanks in advance,
Humberto