Files
fl-knowledge/Microsoft.Office.Interop.Word/Section.cs
T

23 lines
505 B
C#

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