VisCellIndices enum

M

Markus Breugst

Hi Joe,

some sections of the ShapeSheet (like the CustomProperties section) have
multiple columns. With the VisCellIndices enum you can refer to a specific
column inside one row.

Example: The following line of code returns the Value cell
("VisCellIndices.visCustPropsValue") of the second row
("VisRowIndices.visRowProp + 1") of the Custom Properties section
("VisSectionIndices.visSectionProp") of a shape.

IVCell _vCell = _vShape.get_CellsSRC(
(short) VisSectionIndices.visSectionProp,
(short) VisRowIndices.visRowProp + 1,
(short) VisCellIndices.visCustPropsValue );

Best regards,
Markus
 

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