Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic remove arrow (Read 3416 times)
lemon
YaBB Newbies
*
Offline



Posts: 28
Joined: Aug 31st, 2005
remove arrow
Sep 19th, 2005 at 5:46am
Print Post  
hi,

I will not allow to create new arrows by drop.

this way doesn't go:

.. _flowChart_ArrowCreated(object ...)
{
  e.Arrow.Origin.IncomingArrows.Remove(e.Arrow);
}

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


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: remove arrow
Reply #1 - Sep 19th, 2005 at 7:29am
Print Post  
Hi,

You can handle the ArrowCreating event and set Confirm = false there

.. _flowChart_ArrowCreating(object ...)
{
  e.Confirm = false;
}

You could also set _flowChart.Behavior = bhCreateBox so your users can't start drawing arrows at all.

  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint