37 lines
834 B
C#
37 lines
834 B
C#
|
|
using System.Reflection;
|
||
|
|
using System.Runtime.CompilerServices;
|
||
|
|
using System.Runtime.InteropServices;
|
||
|
|
|
||
|
|
namespace Microsoft.Office.Interop.Word;
|
||
|
|
|
||
|
|
[ComImport]
|
||
|
|
[CompilerGenerated]
|
||
|
|
[DefaultMember("Range")]
|
||
|
|
[Guid("00020957-0000-0000-C000-000000000046")]
|
||
|
|
[TypeIdentifier]
|
||
|
|
public interface Paragraph
|
||
|
|
{
|
||
|
|
[DispId(0)]
|
||
|
|
Range Range
|
||
|
|
{
|
||
|
|
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
|
||
|
|
[DispId(0)]
|
||
|
|
[return: MarshalAs(UnmanagedType.Interface)]
|
||
|
|
get;
|
||
|
|
}
|
||
|
|
|
||
|
|
void _VtblGap1_12();
|
||
|
|
|
||
|
|
[DispId(101)]
|
||
|
|
WdParagraphAlignment Alignment
|
||
|
|
{
|
||
|
|
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
|
||
|
|
[DispId(101)]
|
||
|
|
get;
|
||
|
|
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
|
||
|
|
[DispId(101)]
|
||
|
|
[param: In]
|
||
|
|
set;
|
||
|
|
}
|
||
|
|
}
|