I'm putting together an app where I want to control quite closely what the user does.
To that end, and with your help, I've got the following options set:
fcx.Behaviour := bhPanAndModify
fcx.ShowDisabledHandles := false;
and on each box created....
box.MnpHandlesMask := 256; // Just show the 'move' handle.
When I click on a box, I can move the box by dragging the 'move' handle, as you would expect. However, if I click on an arrow the segment handles are drawn and the cursor changes shape if it's over one of these handles but I can't move it.
Have I misunderstood what PanAndModify means? It
says:
Quote:users can only select existing shapes and arrows, move and modify them
but this doesn't appear to hold true for arrows.