Files

24 lines
535 B
C#
Raw Permalink Normal View History

using System.Collections;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
namespace Microsoft.Office.Interop.Word;
[ComImport]
[CompilerGenerated]
[Guid("0002094B-0000-0000-C000-000000000046")]
[TypeIdentifier]
public interface Columns : IEnumerable
{
void _VtblGap1_12();
[DispId(0)]
Column this[[In] int Index]
{
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(0)]
[return: MarshalAs(UnmanagedType.Interface)]
get;
}
}