📄 dsmapbookbar.cls
字号:
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
Persistable = 0 'NotPersistable
DataBindingBehavior = 0 'vbNone
DataSourceBehavior = 0 'vbNone
MTSTransactionMode = 0 'NotAnMTSObject
END
Attribute VB_Name = "DSMapBookBar"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
Attribute VB_Ext_KEY = "SavedWithClassBuilder" ,"Yes"
Attribute VB_Ext_KEY = "Top_Level" ,"Yes"
Attribute VB_Ext_KEY = "SavedWithClassBuilder6" ,"Yes"
' Copyright 2006 ESRI
'
' All rights reserved under the copyright laws of the United States
' and applicable international laws, treaties, and conventions.
'
' You may freely redistribute and use this sample code, with or
' without modification, provided you include the original copyright
' notice and use restrictions.
'
' See use restrictions at /arcgis/developerkit/userestrictions.
'
' Toolbar containing the Split and Combine commands.
'
Option Explicit
Implements IToolBarDef
Private Property Get IToolBarDef_Caption() As String
21: IToolBarDef_Caption = "Map Series"
End Property
Private Sub IToolBarDef_GetItemInfo(ByVal pos As Long, ByVal itemDef As IItemDef)
Select Case pos
Case 0
27: itemDef.ID = "DSMapBookUIPrj.CreateMapBook"
Case 1
29: itemDef.ID = "DSMapBookUIPrj.PageIdentifier"
Case 2
31: itemDef.ID = "DSMapBookUIPrj.clsMapGridButton"
Case 3
33: itemDef.ID = "DSMapBookUIPrj.clsStripMapButton"
34: End Select
End Sub
Private Property Get IToolBarDef_ItemCount() As Long
38: IToolBarDef_ItemCount = 4
End Property
Private Property Get IToolBarDef_name() As String
42: IToolBarDef_name = "DSMapBookUIPrj.MapSeriesBar"
End Property
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -