Solved! Go to Solution.
This property defaults to ???false??? and if set to ???true??? the FeatureLayer will display MapTips...
I am creating a FeatureLayer and adding it thru the API. How do you turn off Popups thru the API?
There is an option to "Don't display popup window" in the Layer Properties dialog after the layer is added.
But I need to do this for the user via the API as I am adding/removing many Feature Layers thru my Addin.
Thanks much,
FeatureLayer.PopupProperties.PopupType = PopupLayerType.None;
Hi Brian,
Have you tried something like this?FeatureLayer.PopupProperties.PopupType = PopupLayerType.None;
This property defaults to ???false??? and if set to ???true??? the FeatureLayer will display MapTips...