22 lines
786 B
C#
22 lines
786 B
C#
|
|
using System.Collections;
|
||
|
|
using System.Reflection;
|
||
|
|
using System.Runtime.CompilerServices;
|
||
|
|
using System.Runtime.InteropServices;
|
||
|
|
|
||
|
|
namespace Microsoft.Office.Interop.Word;
|
||
|
|
|
||
|
|
[ComImport]
|
||
|
|
[CompilerGenerated]
|
||
|
|
[Guid("0002094D-0000-0000-C000-000000000046")]
|
||
|
|
[DefaultMember("Item")]
|
||
|
|
[TypeIdentifier]
|
||
|
|
public interface Tables : IEnumerable
|
||
|
|
{
|
||
|
|
void _VtblGap1_7();
|
||
|
|
|
||
|
|
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
|
||
|
|
[DispId(200)]
|
||
|
|
[return: MarshalAs(UnmanagedType.Interface)]
|
||
|
|
Table Add([In][MarshalAs(UnmanagedType.Interface)] Range Range, [In] int NumRows, [In] int NumColumns, [Optional][In][MarshalAs(UnmanagedType.Struct)] ref object DefaultTableBehavior, [Optional][In][MarshalAs(UnmanagedType.Struct)] ref object AutoFitBehavior);
|
||
|
|
}
|