Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Selection issues/question (Read 2188 times)
David Conroy
Guest


Selection issues/question
Nov 16th, 2005 at 1:39pm
Print Post  
Hi,

Ok, we are working on a solution where all chart objects are created programmatically.  So

  • I do not want users to create things with the mouse.
  • I do not want users to be able to move created objects
  • I DO want users to be able to drag the mouse and select multiple objects.


BUT...

If you select the behavior None, you can't do multiselects(even with the Ctrl key, despite that the guide says it works in ALL modes).

If you select the behavior Modify, you can only put one move constraint on a box, so users can still move objects.

Any ideas how to implement this?  Seems as if behavior needs a new choice, SelectOnly.

  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Selection issues/question
Reply #1 - Nov 16th, 2005 at 1:49pm
Print Post  
Hi,

Try setting the flowchart's Behavior to Modify and disable all box selection handles so they cant be moved or resized.

In version 3 syntax that looks like :

box.MnpHandlesMask = 0;

And in version 4 :

box.EnabledHandles = Handles.None;

Stoyan
  
Back to top
 
IP Logged
 
DConroy
YaBB Newbies
*
Offline



Posts: 12
Joined: Nov 1st, 2005
Re: Selection issues/question
Reply #2 - Nov 16th, 2005 at 2:31pm
Print Post  
That worked beautifully, thanks again!
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint