SpacialSearch not returning selected object always

M

Matt

Hello all,

We have to customize context menu depending on the object selected.

We add the code
m_evtList.AddAdvise((short)Visio.VisEventCodes.visEvtCodeMouseDown,
m_evtSink, "", "");

And in VisEventProc, we add the following code case
(short)VisEventCodes.visEvtCodeMouseDown :
{
//Handle the MouseDown event.
myView.OnMouseDown(source, subject);
break;
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top