程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> 關於C# >> C#進行Visio二次開發之事件

C#進行Visio二次開發之事件

編輯:關於C#

回顧Visio的對象

Application對象

Window對象

Document對象

Page對象

Master對象

Shape對象

Cell對象

Visio對象還有

Selection對象

Connects對象

Style對象

Keyboard

Mouse

DataRecordset

Application對象的事件

右鍵菜單:MarkerEvent

程序退出前:BeforeQuit

模態窗口關閉後:AfterModal

模態窗口出現前:BeforeModal

Visio事件完成:NoEventsPending

程序激活:AppActivated

程序掛起前:BeforeSuspend

進入獲取退出Scopes:EnterScope/ExitScope

用戶動作響應提示:QueryCancelQuit

… …

Window對象的事件

窗口打開:WindowOpened

窗口改變:WindowChanged

窗口關閉前:BeforeWindowClosed

窗口關閉取消:WindowCloseCanceled

窗口選區Shape被刪除: BeforeWindowSelDelete

窗口頁面改變前: BeforeWindowPageTurn

窗口頁面改變後:WindowTurnedToPage

Visio窗口改變:WindowActivated

… …

Document對象事件

文檔添加:DocumentAdded

文檔創建:DocumentCreated

打開文檔:DocumentOpened

文檔改變:DocumentChanged

文檔保存:DocumentSaved

文檔關閉:BeforeDocumentClose

… …

Page對象事件

頁面添加:PageAdded

頁面改變:PageChanged

頁面刪除:BeforePageDelete

取消頁面刪除:PageDeleteCanceled

… …

Shape對象事件

Shape刪除前:BeforeShapeDelete

Shape添加:ShapeAdded

Shape改變:ShapeChanged

Shape刪除後: ShapesDeleted

Shape文本編輯:BeforeShapeTextEdit

Shape文本編輯退出:ShapeExitedTextEdit

Shape 連接添加:ShapeLinkAdded

Shape 連接刪除: ShapeLinkDeleted

Shape 組合變化: ShapeParentChanged

Master對象事件

模具添加:MasterAdded

模具改變:MasterChanged

模具刪除:BeforeMasterDelete

取消模具刪除:MasterDeleteCanceled

模具刪除提示:QueryCancelMasterDelete

… …

Cell對象事件

Cell的值改變:CellChanged

Cell的formula 改變:FormulaChanged

Selection對象事件

選區刪除前:BeforeSelectionDelete

選區刪除提示:QueryCancelSelectionDelete

選區增加:SelectionAdded

選區改變:SelectionChanged

選區取消:SelectionDeleteCanceled

… …

Connects對象事件

連接添加:ConnectionsAdded

連接移除:ConnectionsDeleted

Style對象事件

Style添加:StyleAdded

Style改變: StyleChanged

Style刪除前: BeforeStyleDelete

Style取消刪除: StyleDeleteCanceled

Style刪除提示:QueryCancelStyleDelete

Keyboard對象事件

KeyDown

KeyPress

KeyUp

Mouse對象事件

MouseDown

MouseMove

MouseUp

事件的處理

實現接口IVisEventProc

public class EventSink : IVisEventProc

使用AddAdvise建立事件偵聽

documentEvents.AddAdvise( (unchecked((short)VisEventCodes.visEvtAdd) + (short)VisEventCodes.visEvtShape), (IVisEventProc)this, sink, "ShapeAdd");

實現object IVisEventProc.VisEventProc()函數,和具體處理函數掛鉤

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved