blob: c839c26b2ef9e0a70cec26868c4332555cd94c87 (
plain)
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
namespace mshtml;
[ComImport]
[CompilerGenerated]
[InterfaceType(2)]
[Guid("3050F55F-98B5-11CF-BB82-00AA00BDCE0B")]
[TypeIdentifier]
public interface DispHTMLDocument
{
void _VtblGap1_2();
[DispId(1004)]
IHTMLElement body
{
[MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(1004)]
[return: MarshalAs(UnmanagedType.Interface)]
get;
}
void _VtblGap2_9();
[DispId(1014)]
string designMode
{
[MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(1014)]
[return: MarshalAs(UnmanagedType.BStr)]
get;
[MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(1014)]
[param: MarshalAs(UnmanagedType.BStr)]
set;
}
[DispId(1017)]
IHTMLSelectionObject selection
{
[MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(1017)]
[return: MarshalAs(UnmanagedType.Interface)]
get;
}
void _VtblGap3_25();
[DispId(1032)]
string charset
{
[MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(1032)]
[return: MarshalAs(UnmanagedType.BStr)]
get;
[MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(1032)]
[param: MarshalAs(UnmanagedType.BStr)]
set;
}
void _VtblGap4_14();
[MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(1058)]
void clear();
void _VtblGap5_6();
[MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(1065)]
bool execCommand([In][MarshalAs(UnmanagedType.BStr)] string cmdID, [In] bool showUI = false, [Optional][In][MarshalAs(UnmanagedType.Struct)] object value);
void _VtblGap6_48();
[DispId(1075)]
IHTMLElement documentElement
{
[MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(1075)]
[return: MarshalAs(UnmanagedType.Interface)]
get;
}
}
|