summaryrefslogtreecommitdiff
path: root/Decompiler/Microsoft.Office.Interop.Excel/Range.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Decompiler/Microsoft.Office.Interop.Excel/Range.cs')
-rw-r--r--Decompiler/Microsoft.Office.Interop.Excel/Range.cs63
1 files changed, 63 insertions, 0 deletions
diff --git a/Decompiler/Microsoft.Office.Interop.Excel/Range.cs b/Decompiler/Microsoft.Office.Interop.Excel/Range.cs
new file mode 100644
index 0000000..fa51b07
--- /dev/null
+++ b/Decompiler/Microsoft.Office.Interop.Excel/Range.cs
@@ -0,0 +1,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;
+ }
+}