CellsSRC - visXFormHeight .. .what am I doing wrong?

M

Mac

When a shape is 16 mm in height, how do I check this property? Using this:

If grpShp.CellsSRC(visSectionObject, visRowXFormOut,
visXFormHeight).FormulaU = "16 mm" Then

does not work, anyway the code seems stupid to me...looks like I'm setting
here instead of retreiving ( can't hide I code in C :) ).
 
D

David Parker

Have you tried:
If grpShp.CellsSRC(visSectionObject, visRowXFormOut,
visXFormHeight).ResultStr("mm") = "16.0000 mm" Then
 
Top