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

29 lines
658 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("0002094C-0000-0000-C000-000000000046")]
[TypeIdentifier]
public interface Rows : IEnumerable
{
void _VtblGap1_4();
[DispId(4)]
WdRowAlignment Alignment
{
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(4)]
get;
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(4)]
[param: In]
set;
}
}