blob: f862220c3a2e97a2f154eafd36838bb41b39e2c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
namespace Microsoft.Office.Interop.Excel;
[ComImport]
[CompilerGenerated]
[Guid("000208DA-0000-0000-C000-000000000046")]
[TypeIdentifier]
public interface _Workbook
{
void _VtblGap1_124();
[DispId(494)]
Sheets Worksheets
{
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(494)]
[return: MarshalAs(UnmanagedType.Interface)]
get;
}
}
|