Align nodes on GoPalette

I try to center align my nodes on my palette, how can this be done?
Thanks in advance, fridi

You could try setting GoPalette.AlignsSelectionObject to false,
so that it lines up the Positions of the items instead of the
Positions of their SelectionObjects. (But I sort of doubt that
will help.)
Alternatively, you can override LayoutItems to do whatever positioning
of items you want.

Actually, I think the best thing to do is to make all the objects in the
palette the same size, like Visio does. You can override DoExternalDrop
to drop something other than an exact copy of what is in the palette.
(See Flowgrammer or ProtoApp for samples.)

[QUOTE=Jake]

You could try setting GoPalette.AlignsSelectionObject to false,
so that it lines up the Positions of the items instead of the
Positions of their SelectionObjects. (But I sort of doubt that
will help.)

[/quote]

Sorry, that did not work

[QUOTE=Jake]

Alternatively, you can override LayoutItems to do whatever positioning of items you want.

[/quote]

That worked perfectly! Smile

Thanks for the great support