YouTube | Facebook | X(Twitter) | RSS

EngineEditor の初期化

2016/9/1 (木)

ToolbarControlに追加・削除を繰り返す際はEngineEditorはシングルトン クラスを都度開始・終了処理する必要がある。オペレーションスタックがうまく動作しない

C#
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//---------------------------------------------------------------------
/// <summary>
/// エディタエクステンションを開始する
/// </summary>
//---------------------------------------------------------------------
protected void startupEngineEditor()
{
    IEngineEditor pEngineEditor;
    IExtension pExtention;
    object pToolbarObject;
  
    if (pEngineToolbar.CommandPool == null)
    {
        pEngineToolbar.CommandPool = new CommandPoolClass();
    }
  
    if (pEngineToolbar.OperationStack == null)
    {
        pEngineToolbar.OperationStack = new ControlsOperationStackClass();
    }
      
    System.Type t = Type.GetTypeFromProgID("esriControls.EngineEditor");
    pEngineEditor = CType(Activator.CreateInstance(t), IEngineEditor);
  
    // ツールバーのUndo,Redoを有効にする
    pEngineEditor.EnableUndoRedo(true);
  
    // エディタエクステンションの開始
    pToolbarObject = (object)pEngineToolbar;
    pExtention = (IExtension)pEngineEditor;
    pExtention.Startup(ref pToolbarObject);
  
}
  
  
//---------------------------------------------------------------------
/// <summary>
/// エディタエクステンションを終了する
/// </summary>
//---------------------------------------------------------------------
protected void shutdownEngineEditor()
{
    IEngineEditor pEngineEditor;
    IExtension pExtention;
  
    System.Type t = Type.GetTypeFromProgID("esriControls.EngineEditor");
    pEngineEditor = CType(Activator.CreateInstance(t), IEngineEditor);
  
    pExtention = (IExtension)pEngineEditor;
    pExtention.Shutdown();
}
Visual Basic
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
'---------------------------------------------------------------------
''' <summary>
''' エディタエクステンションを開始する
''' </summary>
'---------------------------------------------------------------------
Protected Sub startupEngineEditor()
    Dim pEngineEditor As IEngineEditor
    Dim pExtention As IExtension
    Dim pToolbarObject As Object
      
    If pEngineToolbar.CommandPool Is Nothing Then
        pEngineToolbar.CommandPool = New CommandPoolClass()
    End If
      
    If pEngineToolbar.OperationStack Is Nothing Then
        pEngineToolbar.OperationStack = New ControlsOperationStackClass()
    End If
      
    'pEngineEditor = New EngineEditorClass()
    Dim t as System.Type = Type.GetTypeFromProgID("esriControls.EngineEditor")
    pEngineEditor = CType(Activator.CreateInstance(t), IEngineEditor)
      
    ' ツールバーのUndo,Redoを有効にする
    pEngineEditor.EnableUndoRedo(True)
      
    ' エディタエクステンションの開始
    pToolbarObject = DirectCast(pEngineToolbar, Object)
    pExtention = DirectCast(pEngineEditor, IExtension)
    pExtention.Startup(pToolbarObject)
End Sub
  
  
'---------------------------------------------------------------------
''' <summary>
''' エディタエクステンションを終了する
''' </summary>
'---------------------------------------------------------------------
Protected Sub shutdownEngineEditor()
    Dim pEngineEditor As IEngineEditor
    Dim pExtention As IExtension
      
    pEngineEditor = New EngineEditorClass()
      
    pExtention = DirectCast(pEngineEditor, IExtension)
    pExtention.Shutdown()
End Sub
  • この記事を書いた人

羽田 康祐

伊達と酔狂のGISエンジニア。GIS上級技術者、Esri認定インストラクター、CompTIA CTT+ Classroom Trainer、潜水士、PADIダイブマスター、四アマ。WordPress は 2.1 からのユーザーで歴だけは長い。 代表著書『"地図リテラシー入門―地図の正しい読み方・描き方がわかる』 GIS を使った自己紹介はこちら。ESRIジャパン(株)所属、元青山学院大学非常勤講師を兼務。日本地図学会第31期常任委員。発言は個人の見解です。

-プログラミング, ArcGIS
-, ,

S