hookActionsCallout.vb
' Copyright 2012 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 the use restrictions. ' Imports System.Runtime.InteropServices Imports System.Drawing Imports ESRI.ArcGIS.ADF.BaseClasses Imports ESRI.ArcGIS.ADF.CATIDs Imports ESRI.ArcGIS.Controls Imports ESRI.ArcGIS.esriSystem Imports ESRI.ArcGIS.Carto Imports ESRI.ArcGIS.Geodatabase <ComClass(hookActionsFlash.ClassId, hookActionsFlash.InterfaceId, hookActionsFlash.EventsId), _ ProgId("HookActions.hookActionsCallout")> _ Public NotInheritable Class hookActionsCallout Inherits BaseCommand #Region "COM GUIDs" ' These GUIDs provide the COM identity for this class ' and its COM interfaces. If you change them, existing ' clients will no longer be able to access the class. Public Const ClassId As String = "29F21537-7BE5-4c14-9C19-6737E94C11E0" Public Const InterfaceId As String = "FE94582C-DD0B-4fd7-9597-506E4DF7A814" Public Const EventsId As String = "A3F68851-FEC6-4299-ABE7-90D03D27E0F3" #End Region #Region "COM Registration Function(s)" <ComRegisterFunction(), ComVisibleAttribute(False)> _ Public Shared Sub RegisterFunction(ByVal registerType As Type) ' Required for ArcGIS Component Category Registrar support ArcGISCategoryRegistration(registerType) 'Add any COM registration code after the ArcGISCategoryRegistration() call End Sub <ComUnregisterFunction(), ComVisibleAttribute(False)> _ Public Shared Sub UnregisterFunction(ByVal registerType As Type) ' Required for ArcGIS Component Category Registrar support ArcGISCategoryUnregistration(registerType) 'Add any COM unregistration code after the ArcGISCategoryUnregistration() call End Sub #Region "ArcGIS Component Category Registrar generated code" Private Shared Sub ArcGISCategoryRegistration(ByVal registerType As Type) Dim regKey As String = String.Format("HKEY_CLASSES_ROOT\CLSID\{{{0}}}", registerType.GUID) ControlsCommands.Register(regKey) MxCommands.Register(regKey) GMxCommands.Register(regKey) End Sub Private Shared Sub ArcGISCategoryUnregistration(ByVal registerType As Type) Dim regKey As String = String.Format("HKEY_CLASSES_ROOT\CLSID\{{{0}}}", registerType.GUID) ControlsCommands.Unregister(regKey) MxCommands.Unregister(regKey) GMxCommands.Unregister(regKey) End Sub #End Region #End Region Private m_hookHelper As IHookHelper Private m_globeHookHelper As IGlobeHookHelper ' A creatable COM class must have a Public Sub New() ' with no parameters, otherwise, the class will not be ' registered in the COM registry and cannot be created ' via CreateObject. Public Sub New() MyBase.New() MyBase.m_category = "HookActions" MyBase.m_caption = "Create callouts" MyBase.m_message = "Create callouts" MyBase.m_toolTip = "Create callouts" MyBase.m_name = "HookActions_Callout" End Sub Public Overrides Sub OnCreate(ByVal hook As Object) ' Test the hook that calls this command and disable if nothing is valid If Not hook Is Nothing Then Try m_hookHelper = New HookHelperClass m_hookHelper.Hook = hook If m_hookHelper.ActiveView Is Nothing Then m_hookHelper = Nothing Catch m_hookHelper = Nothing End Try If m_hookHelper Is Nothing Then 'Can be globe Try m_globeHookHelper = New GlobeHookHelperClass m_globeHookHelper.Hook = hook If m_globeHookHelper.ActiveViewer Is Nothing Then m_globeHookHelper = Nothing Catch m_globeHookHelper = Nothing End Try End If End If If m_globeHookHelper Is Nothing And m_hookHelper Is Nothing Then MyBase.m_enabled = False Else MyBase.m_enabled = True End If End Sub Public Overrides ReadOnly Property Enabled() As Boolean Get Dim hookActions As IHookActions = Nothing Dim basicMap As IBasicMap = Nothing 'Get basic map and set hook actions If Not m_hookHelper Is Nothing Then basicMap = m_hookHelper.FocusMap hookActions = m_hookHelper ElseIf Not m_globeHookHelper Is Nothing Then basicMap = m_globeHookHelper.Globe hookActions = m_globeHookHelper End If 'Disable if no features selected Dim enumFeature As IEnumFeature = basicMap.FeatureSelection Dim feature As IFeature = enumFeature.Next If feature Is Nothing Then Return False 'Enable if action supported on first selected feature If hookActions.ActionSupported(feature.Shape, esriHookActions.esriHookActionsCallout) Then Return True Else Return False End If End Get End Property Public Overrides Sub OnClick() Dim hookActions As IHookActions = Nothing Dim basicMap As IBasicMap = Nothing 'Get basic map and set hook actions If Not m_hookHelper Is Nothing Then basicMap = m_hookHelper.FocusMap hookActions = m_hookHelper ElseIf Not m_globeHookHelper Is Nothing Then basicMap = m_globeHookHelper.Globe hookActions = m_globeHookHelper End If 'Get feature selection Dim selection As ISelection selection = basicMap.FeatureSelection 'Get enumerator Dim enumFeature As IEnumFeature, feature As IFeature enumFeature = selection enumFeature.Reset() 'Set first feature feature = enumFeature.Next 'Loop though the features Dim array As IArray = New Array() Dim sArray As IStringArray = New StrArray() Do Until feature Is Nothing 'Add feature to array array.Add(feature.Shape) 'Add the value of the first field to the string array sArray.Add(feature.Value(0)) 'Set next feature feature = enumFeature.Next Loop 'If the action is supported perform the action If hookActions.ActionSupportedOnMultiple(array, esriHookActions.esriHookActionsCallout) Then hookActions.DoActionWithNameOnMultiple(array, sArray, esriHookActions.esriHookActionsCallout) End If End Sub End Class