I use a checkbox to display a selected ARFeature and highlight it.
This works fun. However, upon unchecking the box, I'd like the highlight to disappear.
Select Case CheckBox1.CheckState
Case CheckState.Checked
pARFeatureSet.Highlight(True, UIntColor)
Case CheckState.Unchecked
pARFeatureSet.Highlight(False, UIntColor)
I've tried this a couple different (i.e._click, _checkstate) ways but I cannot get the highlight to go away. I realize I probbly won't get a reply back, going by these forums, but figured it'd be wroth a shot.