ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   type of selection if selection is chart (https://www.excelbanter.com/excel-programming/345333-type-selection-if-selection-chart.html)

Chimanrao

type of selection if selection is chart
 
this is what msdn says

"The returned object type depends on the current selection (for
example, if a cell is selected, this property returns a Range object).
The Selection property returns Nothing if nothing is selected."

What is the type of selection object if a chart is selected?

I am using C++ and COM.

IDispatch *pDispatch = m_Application-GetSelection();
if (pDispatch == NULL)
return ;

CComQIPtr<MSExcel::Range ranges(pDispatch);
if (ranges == NULL)
return ;

If the user selects a chart the ranges object is null, I tried querying
for _Chart, even that is null.



All times are GMT +1. The time now is 08:48 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com