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