123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- using System;
- using System.Runtime.InteropServices;
- using System.Security;
- using System.Windows.Forms;
- namespace LYFZ.OtherExpansion.Win32.Com
- {
- [Guid("D30C1661-CDAF-11d0-8A3E-00C04FC9E26E"), TypeLibType(TypeLibTypeFlags.FHidden | TypeLibTypeFlags.FDual | TypeLibTypeFlags.FOleAutomation), SuppressUnmanagedCodeSecurity]
- [ComImport]
- public interface IWebBrowser2
- {
- [DispId(200)]
- object Application
- {
- [return: MarshalAs(UnmanagedType.IDispatch)]
- get;
- }
- [DispId(201)]
- object Parent
- {
- [return: MarshalAs(UnmanagedType.IDispatch)]
- get;
- }
- [DispId(202)]
- object Container
- {
- [return: MarshalAs(UnmanagedType.IDispatch)]
- get;
- }
- [DispId(203)]
- object Document
- {
- [return: MarshalAs(UnmanagedType.IDispatch)]
- get;
- }
- [DispId(204)]
- bool TopLevelContainer
- {
- get;
- }
- [DispId(205)]
- string Type
- {
- get;
- }
- [DispId(206)]
- int Left
- {
- get;
- set;
- }
- [DispId(207)]
- int Top
- {
- get;
- set;
- }
- [DispId(208)]
- int Width
- {
- get;
- set;
- }
- [DispId(209)]
- int Height
- {
- get;
- set;
- }
- [DispId(210)]
- string LocationName
- {
- get;
- }
- [DispId(211)]
- string LocationURL
- {
- get;
- }
- [DispId(212)]
- bool Busy
- {
- get;
- }
- [DispId(0)]
- string Name
- {
- get;
- }
- [DispId(-515)]
- int HWND
- {
- get;
- }
- [DispId(400)]
- string FullName
- {
- get;
- }
- [DispId(401)]
- string Path
- {
- get;
- }
- [DispId(402)]
- bool Visible
- {
- get;
- set;
- }
- [DispId(403)]
- bool StatusBar
- {
- get;
- set;
- }
- [DispId(404)]
- string StatusText
- {
- get;
- set;
- }
- [DispId(405)]
- int ToolBar
- {
- get;
- set;
- }
- [DispId(406)]
- bool MenuBar
- {
- get;
- set;
- }
- [DispId(407)]
- bool FullScreen
- {
- get;
- set;
- }
- [DispId(-525)]
- WebBrowserReadyState ReadyState
- {
- get;
- }
- [DispId(550)]
- bool Offline
- {
- get;
- set;
- }
- [DispId(551)]
- bool Silent
- {
- get;
- set;
- }
- [DispId(552)]
- bool RegisterAsBrowser
- {
- get;
- set;
- }
- [DispId(553)]
- bool RegisterAsDropTarget
- {
- get;
- set;
- }
- [DispId(554)]
- bool TheaterMode
- {
- get;
- set;
- }
- [DispId(555)]
- bool AddressBar
- {
- get;
- set;
- }
- [DispId(556)]
- bool Resizable
- {
- get;
- set;
- }
- [DispId(100)]
- void GoBack();
- [DispId(101)]
- void GoForward();
- [DispId(102)]
- void GoHome();
- [DispId(103)]
- void GoSearch();
- [DispId(104)]
- void Navigate([In] string Url, [In] ref object flags, [In] ref object targetFrameName, [In] ref object postData, [In] ref object headers);
- [DispId(-550)]
- void Refresh();
- [DispId(105)]
- void Refresh2([In] ref object level);
- [DispId(106)]
- void Stop();
- [DispId(300)]
- void Quit();
- [DispId(301)]
- void ClientToWindow(out int pcx, out int pcy);
- [DispId(302)]
- void PutProperty([In] string property, [In] object vtValue);
- [DispId(303)]
- object GetProperty([In] string property);
- [DispId(500)]
- void Navigate2([In] ref object URL, [In] ref object flags, [In] ref object targetFrameName, [In] ref object postData, [In] ref object headers);
- [DispId(501)]
- OLECMDF QueryStatusWB([In] OLECMDID cmdID);
- [DispId(502)]
- void ExecWB([In] OLECMDID cmdID, [In] OLECMDEXECOPT cmdexecopt, ref object pvaIn, IntPtr pvaOut);
- [DispId(503)]
- void ShowBrowserBar([In] ref object pvaClsid, [In] ref object pvarShow, [In] ref object pvarSize);
- }
- }
|