📄 vba09-01.txt
字号:
Public Sub MakeLayerVisible()
Dim pMxDocument As IMxDocument
Dim pMap As IMap
Dim pFeatureLayer As IFeatureLayer
Dim pActiveView As IActiveView
Dim pContentsView As IContentsView
' Access the first feature layer on the map
Set pMxDocument = ThisDocument
Set pMap = pMxDocument.FocusMap
Set pFeatureLayer = pMap.Layer(0)
' If the feature layer is not visible,
' then make it visible.
If Not pFeatureLayer.Visible Then
pFeatureLayer.Visible = True
End If
' Refresh the map.
Set pActiveView = pMap
pActiveView.Refresh
' Refresh the table of contents.
Set pContentsView = pMxDocument. _
CurrentContentsView
pContentsView.Refresh pFeatureLayer
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -