View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 6,953
Default how to find if multiple chart objects are selected?

demo'd from the immediate window:

' two selected
? typename(selection)
DrawingObjects

' one selected
? typename(selection)
ChartArea

If I put it in drawing mode from the drawing toolbar and forced it to
actually select a single chart object it was

? typename(selection)
ChartObject


--
Regards,
Tom Ogilvy



"Chimanrao" wrote:

hi
how do i find if multiple chart objects are selected by the user using
the ctrl + click mechanism?
chiman