?? vba13-5.txt
字號:
Private Sub UIToolPermit_MouseUp(ByVal button As Long, _
ByVal shift As Long, ByVal x As Long, ByVal y As Long)
' Do not process if the mouse was not pressed down
' on the map.
If (Not m_blnMouseDown) Then Exit Sub
Dim pMxDocument As IMxDocument
Dim pActiveView As IActiveView
Dim pMap As IMap
Set pMxDocument = Application.Document
Set pActiveView = pMxDocument.FocusMap
pActiveView.PartialRefresh esriViewGeoSelection, _
Nothing, Nothing
Set pMap = pMxDocument.FocusMap
pMap.SelectByShape m_pPoint, Nothing, True
pActiveView.PartialRefresh esriViewGeoSelection, _
Nothing, Nothing
m_blnMouseDown = False
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -