How to detect which row is selected

J

JsJ_Slim

Hi,

I'm trying to detect if a user selected a cell within a powerpoint table
shape, as well as find out which row and column the cell belongs to.
Basically, I'm trying to do the equivalent of the following Word code:


***Code Snippet***

Cell selectedCell = Application.Selection.Cells[1];
int rowIndex = selectedCell.Row.Index;
int colIndex = selectedCell.Column.Index;

******

Please help.

Thanks.

Josh
 
B

Bryant Likes

JsJ_Slim said:
Hi,

I'm trying to detect if a user selected a cell within a powerpoint table
shape, as well as find out which row and column the cell belongs to.
Basically, I'm trying to do the equivalent of the following Word code:

You might try to the PowerPoint newsgroup. This one is for Project Server...
 

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