blob: fa51b07230cda660d8e4ab5511ef7b5fb80699fe (
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
|
using System.Collections;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
namespace Microsoft.Office.Interop.Excel;
[ComImport]
[CompilerGenerated]
[InterfaceType(2)]
[DefaultMember("_Default")]
[Guid("00020846-0000-0000-C000-000000000046")]
[TypeIdentifier]
public interface Range : IEnumerable
{
void _VtblGap1_31();
[DispId(241)]
Range Columns
{
[MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(241)]
[return: MarshalAs(UnmanagedType.Interface)]
get;
}
void _VtblGap2_6();
[DispId(118)]
int Count
{
[MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(118)]
get;
}
void _VtblGap3_104();
[DispId(258)]
Range Rows
{
[MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(258)]
[return: MarshalAs(UnmanagedType.Interface)]
get;
}
void _VtblGap4_31();
[DispId(1388)]
object Value2
{
[MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(1388)]
[return: MarshalAs(UnmanagedType.Struct)]
get;
[MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(1388)]
[param: In]
[param: MarshalAs(UnmanagedType.Struct)]
set;
}
}
|