Files

23 lines
502 B
C#
Raw Permalink Normal View History

using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
namespace Microsoft.Office.Interop.Word;
[ComImport]
[CompilerGenerated]
[DefaultMember("Range")]
[Guid("0002094E-0000-0000-C000-000000000046")]
[TypeIdentifier]
public interface Cell
{
[DispId(0)]
Range Range
{
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(0)]
[return: MarshalAs(UnmanagedType.Interface)]
get;
}
}