outlookbarpaneclass.cs

来自「破解的飞信源代码」· CS 代码 · 共 65 行

CS
65
字号
namespace Microsoft.Office.Interop.Outlook
{
    using System;
    using System.Reflection;
    using System.Runtime.CompilerServices;
    using System.Runtime.InteropServices;

    [ComImport, ClassInterface((short) 0), Guid("00063055-0000-0000-C000-000000000046"), DefaultMember("Name"), ComSourceInterfaces("Microsoft.Office.Interop.Outlook.OutlookBarPaneEvents\0")]
    public class OutlookBarPaneClass : _OutlookBarPane, OutlookBarPane, OutlookBarPaneEvents_Event
    {
        public event OutlookBarPaneEvents_BeforeGroupSwitchEventHandler BeforeGroupSwitch;

        public event OutlookBarPaneEvents_BeforeNavigateEventHandler BeforeNavigate;

        [DispId(0xf000)]
        public virtual Microsoft.Office.Interop.Outlook.Application Application { [return: MarshalAs(UnmanagedType.Interface)] [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType=MethodCodeType.Runtime), DispId(0xf000)] get; }

        [DispId(0xf00a)]
        public virtual OlObjectClass Class { [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType=MethodCodeType.Runtime), DispId(0xf00a)] get; }

        [DispId(0x2100)]
        public virtual OutlookBarStorage Contents { [return: MarshalAs(UnmanagedType.Interface)] [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType=MethodCodeType.Runtime), DispId(0x2100)] get; }

        [DispId(0x2101)]
        public virtual OutlookBarGroup CurrentGroup { [return: MarshalAs(UnmanagedType.Interface)] [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType=MethodCodeType.Runtime), DispId(0x2101)] get; [param: In, MarshalAs(UnmanagedType.Interface)] [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType=MethodCodeType.Runtime), DispId(0x2101)] set; }

        [DispId(0xf000)]
        public virtual Microsoft.Office.Interop.Outlook.Application Microsoft.Office.Interop.Outlook._OutlookBarPane.Application { [return: MarshalAs(UnmanagedType.Interface)] [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType=MethodCodeType.Runtime), DispId(0xf000)] get; }

        [DispId(0xf00a)]
        public virtual OlObjectClass Microsoft.Office.Interop.Outlook._OutlookBarPane.Class { [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType=MethodCodeType.Runtime), DispId(0xf00a)] get; }

        [DispId(0x2100)]
        public virtual OutlookBarStorage Microsoft.Office.Interop.Outlook._OutlookBarPane.Contents { [return: MarshalAs(UnmanagedType.Interface)] [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType=MethodCodeType.Runtime), DispId(0x2100)] get; }

        [DispId(0x2101)]
        public virtual OutlookBarGroup Microsoft.Office.Interop.Outlook._OutlookBarPane.CurrentGroup { [return: MarshalAs(UnmanagedType.Interface)] [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType=MethodCodeType.Runtime), DispId(0x2101)] get; [param: In, MarshalAs(UnmanagedType.Interface)] [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType=MethodCodeType.Runtime), DispId(0x2101)] set; }

        [DispId(0)]
        public virtual string Microsoft.Office.Interop.Outlook._OutlookBarPane.Name { [return: MarshalAs(UnmanagedType.BStr)] [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType=MethodCodeType.Runtime), DispId(0)] get; }

        [DispId(0xf001)]
        public virtual object Microsoft.Office.Interop.Outlook._OutlookBarPane.Parent { [return: MarshalAs(UnmanagedType.IDispatch)] [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType=MethodCodeType.Runtime), DispId(0xf001)] get; }

        [DispId(0xf00b)]
        public virtual NameSpace Microsoft.Office.Interop.Outlook._OutlookBarPane.Session { [return: MarshalAs(UnmanagedType.Interface)] [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType=MethodCodeType.Runtime), DispId(0xf00b)] get; }

        [DispId(0x2103)]
        public virtual bool Microsoft.Office.Interop.Outlook._OutlookBarPane.Visible { [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType=MethodCodeType.Runtime), DispId(0x2103)] get; [param: In] [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType=MethodCodeType.Runtime), DispId(0x2103)] set; }

        [DispId(0)]
        public virtual string Name { [return: MarshalAs(UnmanagedType.BStr)] [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType=MethodCodeType.Runtime), DispId(0)] get; }

        [DispId(0xf001)]
        public virtual object Parent { [return: MarshalAs(UnmanagedType.IDispatch)] [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType=MethodCodeType.Runtime), DispId(0xf001)] get; }

        [DispId(0xf00b)]
        public virtual NameSpace Session { [return: MarshalAs(UnmanagedType.Interface)] [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType=MethodCodeType.Runtime), DispId(0xf00b)] get; }

        [DispId(0x2103)]
        public virtual bool Visible { [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType=MethodCodeType.Runtime), DispId(0x2103)] get; [param: In] [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType=MethodCodeType.Runtime), DispId(0x2103)] set; }
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?