IWebBrowser2.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. using System;
  2. using System.Runtime.InteropServices;
  3. using System.Security;
  4. using System.Windows.Forms;
  5. namespace LYFZ.OtherExpansion.Win32.Com
  6. {
  7. [Guid("D30C1661-CDAF-11d0-8A3E-00C04FC9E26E"), TypeLibType(TypeLibTypeFlags.FHidden | TypeLibTypeFlags.FDual | TypeLibTypeFlags.FOleAutomation), SuppressUnmanagedCodeSecurity]
  8. [ComImport]
  9. public interface IWebBrowser2
  10. {
  11. [DispId(200)]
  12. object Application
  13. {
  14. [return: MarshalAs(UnmanagedType.IDispatch)]
  15. get;
  16. }
  17. [DispId(201)]
  18. object Parent
  19. {
  20. [return: MarshalAs(UnmanagedType.IDispatch)]
  21. get;
  22. }
  23. [DispId(202)]
  24. object Container
  25. {
  26. [return: MarshalAs(UnmanagedType.IDispatch)]
  27. get;
  28. }
  29. [DispId(203)]
  30. object Document
  31. {
  32. [return: MarshalAs(UnmanagedType.IDispatch)]
  33. get;
  34. }
  35. [DispId(204)]
  36. bool TopLevelContainer
  37. {
  38. get;
  39. }
  40. [DispId(205)]
  41. string Type
  42. {
  43. get;
  44. }
  45. [DispId(206)]
  46. int Left
  47. {
  48. get;
  49. set;
  50. }
  51. [DispId(207)]
  52. int Top
  53. {
  54. get;
  55. set;
  56. }
  57. [DispId(208)]
  58. int Width
  59. {
  60. get;
  61. set;
  62. }
  63. [DispId(209)]
  64. int Height
  65. {
  66. get;
  67. set;
  68. }
  69. [DispId(210)]
  70. string LocationName
  71. {
  72. get;
  73. }
  74. [DispId(211)]
  75. string LocationURL
  76. {
  77. get;
  78. }
  79. [DispId(212)]
  80. bool Busy
  81. {
  82. get;
  83. }
  84. [DispId(0)]
  85. string Name
  86. {
  87. get;
  88. }
  89. [DispId(-515)]
  90. int HWND
  91. {
  92. get;
  93. }
  94. [DispId(400)]
  95. string FullName
  96. {
  97. get;
  98. }
  99. [DispId(401)]
  100. string Path
  101. {
  102. get;
  103. }
  104. [DispId(402)]
  105. bool Visible
  106. {
  107. get;
  108. set;
  109. }
  110. [DispId(403)]
  111. bool StatusBar
  112. {
  113. get;
  114. set;
  115. }
  116. [DispId(404)]
  117. string StatusText
  118. {
  119. get;
  120. set;
  121. }
  122. [DispId(405)]
  123. int ToolBar
  124. {
  125. get;
  126. set;
  127. }
  128. [DispId(406)]
  129. bool MenuBar
  130. {
  131. get;
  132. set;
  133. }
  134. [DispId(407)]
  135. bool FullScreen
  136. {
  137. get;
  138. set;
  139. }
  140. [DispId(-525)]
  141. WebBrowserReadyState ReadyState
  142. {
  143. get;
  144. }
  145. [DispId(550)]
  146. bool Offline
  147. {
  148. get;
  149. set;
  150. }
  151. [DispId(551)]
  152. bool Silent
  153. {
  154. get;
  155. set;
  156. }
  157. [DispId(552)]
  158. bool RegisterAsBrowser
  159. {
  160. get;
  161. set;
  162. }
  163. [DispId(553)]
  164. bool RegisterAsDropTarget
  165. {
  166. get;
  167. set;
  168. }
  169. [DispId(554)]
  170. bool TheaterMode
  171. {
  172. get;
  173. set;
  174. }
  175. [DispId(555)]
  176. bool AddressBar
  177. {
  178. get;
  179. set;
  180. }
  181. [DispId(556)]
  182. bool Resizable
  183. {
  184. get;
  185. set;
  186. }
  187. [DispId(100)]
  188. void GoBack();
  189. [DispId(101)]
  190. void GoForward();
  191. [DispId(102)]
  192. void GoHome();
  193. [DispId(103)]
  194. void GoSearch();
  195. [DispId(104)]
  196. void Navigate([In] string Url, [In] ref object flags, [In] ref object targetFrameName, [In] ref object postData, [In] ref object headers);
  197. [DispId(-550)]
  198. void Refresh();
  199. [DispId(105)]
  200. void Refresh2([In] ref object level);
  201. [DispId(106)]
  202. void Stop();
  203. [DispId(300)]
  204. void Quit();
  205. [DispId(301)]
  206. void ClientToWindow(out int pcx, out int pcy);
  207. [DispId(302)]
  208. void PutProperty([In] string property, [In] object vtValue);
  209. [DispId(303)]
  210. object GetProperty([In] string property);
  211. [DispId(500)]
  212. void Navigate2([In] ref object URL, [In] ref object flags, [In] ref object targetFrameName, [In] ref object postData, [In] ref object headers);
  213. [DispId(501)]
  214. OLECMDF QueryStatusWB([In] OLECMDID cmdID);
  215. [DispId(502)]
  216. void ExecWB([In] OLECMDID cmdID, [In] OLECMDEXECOPT cmdexecopt, ref object pvaIn, IntPtr pvaOut);
  217. [DispId(503)]
  218. void ShowBrowserBar([In] ref object pvaClsid, [In] ref object pvarShow, [In] ref object pvarSize);
  219. }
  220. }