Pause  drawing with Python?

2143
1
01-07-2013 10:33 AM
DerekGrisbeck
New Contributor
I am looking to Pause and Refresh the ArcMap drawing within a python script - is this possible?.. I could only find reference to a "IMxApplication2.PauseDrawing Property" tool through C# or Visual basic. Thanks!
Tags (2)
1 Reply
CarlSunderman
Occasional Contributor
you could try the sendkeys module

import SendKeys
# Send the keystroke for F9
SendKeys.SendKeys("{F9}")
0 Kudos