-
Notifications
You must be signed in to change notification settings - Fork 158
Expand file tree
/
Copy pathDispLineEvents.cs
More file actions
52 lines (37 loc) · 1.21 KB
/
DispLineEvents.cs
File metadata and controls
52 lines (37 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
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
52
using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.InteropServices.ComTypes;
using NetOffice;
using NetOffice.Attributes;
namespace NetOffice.AccessApi.Events
{
#pragma warning disable CS1591
#region SinkPoint Interface
[SupportByVersion("Access", 12,14,15,16)]
[InternalEntity(InternalEntityKind.ComEventInterface)]
[ComImport, Guid("2E705279-92D1-43CC-A57B-ED48BCCC711D"), InterfaceType(ComInterfaceType.InterfaceIsIDispatch), TypeLibType((short)0x1010)]
public interface DispLineEvents
{
}
#endregion
#region SinkHelper
[InternalEntity(InternalEntityKind.SinkHelper)]
[ComVisible(true), ClassInterface(ClassInterfaceType.None), TypeLibType(TypeLibTypeFlags.FHidden)]
public class DispLineEvents_SinkHelper : SinkHelper, DispLineEvents
{
#region Static
public static readonly string Id = "2E705279-92D1-43CC-A57B-ED48BCCC711D";
#endregion
#region Ctor
public DispLineEvents_SinkHelper(ICOMObject eventClass, IConnectionPoint connectPoint): base(eventClass)
{
SetupEventBinding(connectPoint);
}
#endregion
#region DispLineEvents
#endregion
}
#endregion
#pragma warning restore CS1591
}