Interactive selection Toggle Inside/Overlap

304
2
04-27-2017 03:33 PM
DavidGabrielse1
New Contributor

New to ESRI and Python but have previous programming experience on CAD platforms.  Is it possible to access the function or method that controls the selection settings?  I would like to be able to toggle between selection "inside" mode an "overlap" via a tool button or function key.

My main difficulty is finding where this setting is being stored and what function is used to set it.  

Any help pointing me in the right direction would be appreciated. 

Thanks

David G

0 Kudos
2 Replies
curtvprice
MVP Esteemed Contributor

David, I think I have bad news for you. Most of the ArcMap user-interface settings like this are only available using ArcObjects .NET, unless they have been explicitly exposed to Python through arcpy.mapping methods and properties. The technology for this is to build a .NET addin. I've seen people connect Python to ArcObjects to do these kinds of things using PythonWin hooks into Windows APIs but it not well supported.

DavidGabrielse1
New Contributor

Curtis,  Thank you.   Sounds like .NET is the preferred development tool for manipulating the UI.