📄 applicationevents_11_sinkhelper.cs
字号:
namespace Microsoft.Office.Interop.Outlook
{
using System;
using System.Runtime.InteropServices;
[ClassInterface(ClassInterfaceType.None)]
public sealed class ApplicationEvents_11_SinkHelper : ApplicationEvents_11
{
public ApplicationEvents_11_AdvancedSearchCompleteEventHandler m_AdvancedSearchCompleteDelegate = null;
public ApplicationEvents_11_AdvancedSearchStoppedEventHandler m_AdvancedSearchStoppedDelegate = null;
public int m_dwCookie = 0;
public ApplicationEvents_11_ItemSendEventHandler m_ItemSendDelegate = null;
public ApplicationEvents_11_MAPILogonCompleteEventHandler m_MAPILogonCompleteDelegate = null;
public ApplicationEvents_11_NewMailEventHandler m_NewMailDelegate = null;
public ApplicationEvents_11_NewMailExEventHandler m_NewMailExDelegate = null;
public ApplicationEvents_11_OptionsPagesAddEventHandler m_OptionsPagesAddDelegate = null;
public ApplicationEvents_11_QuitEventHandler m_QuitDelegate = null;
public ApplicationEvents_11_ReminderEventHandler m_ReminderDelegate = null;
public ApplicationEvents_11_StartupEventHandler m_StartupDelegate = null;
internal ApplicationEvents_11_SinkHelper()
{
}
public override void AdvancedSearchComplete(Search search1)
{
if (this.m_AdvancedSearchCompleteDelegate != null)
{
this.m_AdvancedSearchCompleteDelegate(search1);
}
}
public override void AdvancedSearchStopped(Search search1)
{
if (this.m_AdvancedSearchStoppedDelegate != null)
{
this.m_AdvancedSearchStoppedDelegate(search1);
}
}
public override void ItemSend(object obj1, ref bool flagRef1)
{
if (this.m_ItemSendDelegate != null)
{
this.m_ItemSendDelegate(obj1, ref flagRef1);
}
}
public override void MAPILogonComplete()
{
if (this.m_MAPILogonCompleteDelegate != null)
{
this.m_MAPILogonCompleteDelegate();
}
}
public override void NewMail()
{
if (this.m_NewMailDelegate != null)
{
this.m_NewMailDelegate();
}
}
public override void NewMailEx(string text1)
{
if (this.m_NewMailExDelegate != null)
{
this.m_NewMailExDelegate(text1);
}
}
public override void OptionsPagesAdd(PropertyPages pages1)
{
if (this.m_OptionsPagesAddDelegate != null)
{
this.m_OptionsPagesAddDelegate(pages1);
}
}
public override void Quit()
{
if (this.m_QuitDelegate != null)
{
this.m_QuitDelegate();
}
}
public override void Reminder(object obj1)
{
if (this.m_ReminderDelegate != null)
{
this.m_ReminderDelegate(obj1);
}
}
public override void Startup()
{
if (this.m_StartupDelegate != null)
{
this.m_StartupDelegate();
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -