rcain
10 years agoOccasional Contributor
How do I tell if there is a checkbox rowheader on a sftTreeControl32ocx
I have a sfttreecontrol32ocx object. With current code to click on a particular cell I calculate the left in a for loop adding the ColumnWidth:
For nIndex = 0 To nAdjustedCol
nLeft = nLeft + oInteraction.guiObject.ColumnWidth(nIndex)
Next
However with the control I am working with now there is a checkbox rowheader at the very left of the control. It does not move when I rearrance the columns, appears like a locked row in excel (doesnt move). Having this row header throws off the above Left calculation.
I cannot figure out what property to use to determine if this checkbox is there or not.
Any thoughts?