📄 vba14-5.txt
字号:
Private Sub LabelLayer(pFeatureLayer As IFeatureLayer, _
blnLabel As Boolean)
' Label a layer by turining on
' the label property.
Dim pGeoFeatureLayer As IGeoFeatureLayer
Dim pMxDocument As IMxDocument
Dim pMap As IMap
Dim pActiveView As IActiveView
Set pMxDocument = Application.Document
Set pMap = pMxDocument.FocusMap
Set pActiveView = pMap
' Turn on or off the layer's labeling.
Set pGeoFeatureLayer = pFeatureLayer
pGeoFeatureLayer.DisplayField = "NAME"
pGeoFeatureLayer.DisplayAnnotation = blnLabel
pActiveView.Refresh
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -