blob: 25c6073673f33bd84edc41a9c8fe2bf400b2c0a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
namespace mshtml;
[ComImport]
[CompilerGenerated]
[Guid("3050F25A-98B5-11CF-BB82-00AA00BDCE0B")]
[TypeIdentifier]
public interface IHTMLSelectionObject
{
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(1001)]
[return: MarshalAs(UnmanagedType.IDispatch)]
object createRange();
}
|