41 lines
959 B
C#
41 lines
959 B
C#
using System.Collections;
|
|
using System.Reflection;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Microsoft.Office.Interop.Word;
|
|
|
|
[ComImport]
|
|
[CompilerGenerated]
|
|
[DefaultMember("Item")]
|
|
[Guid("0002093C-0000-0000-C000-000000000046")]
|
|
[TypeIdentifier]
|
|
public interface Borders : IEnumerable
|
|
{
|
|
void _VtblGap1_11();
|
|
|
|
[DispId(6)]
|
|
WdLineStyle InsideLineStyle
|
|
{
|
|
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
|
|
[DispId(6)]
|
|
get;
|
|
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
|
|
[DispId(6)]
|
|
[param: In]
|
|
set;
|
|
}
|
|
|
|
[DispId(7)]
|
|
WdLineStyle OutsideLineStyle
|
|
{
|
|
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
|
|
[DispId(7)]
|
|
get;
|
|
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
|
|
[DispId(7)]
|
|
[param: In]
|
|
set;
|
|
}
|
|
}
|