[][src]Struct winapi::um::exdisp::IWebBrowserApp

#[repr(C)]pub struct IWebBrowserApp {
    pub lpVtbl: *const IWebBrowserAppVtbl,
}

Fields

lpVtbl: *const IWebBrowserAppVtbl

Implementations

impl IWebBrowserApp[src]

pub unsafe fn Quit(&self) -> HRESULT[src]

pub unsafe fn ClientToWindow(&self, pcx: *mut INT, pcy: *mut INT) -> HRESULT[src]

pub unsafe fn PutProperty(&self, Property: BSTR, vtValue: VARIANT) -> HRESULT[src]

pub unsafe fn GetProperty(
    &self,
    Property: BSTR,
    pvtValue: *mut VARIANT
) -> HRESULT
[src]

pub unsafe fn get_Name(&self, Name: *mut BSTR) -> HRESULT[src]

pub unsafe fn get_HWND(&self, pHWND: *mut SHANDLE_PTR) -> HRESULT[src]

pub unsafe fn get_FullName(&self, FullName: *mut BSTR) -> HRESULT[src]

pub unsafe fn get_Path(&self, Path: *mut BSTR) -> HRESULT[src]

pub unsafe fn get_Visible(&self, pBool: *mut VARIANT_BOOL) -> HRESULT[src]

pub unsafe fn put_Visible(&self, Value: VARIANT_BOOL) -> HRESULT[src]

pub unsafe fn get_StatusBar(&self, pBool: *mut VARIANT_BOOL) -> HRESULT[src]

pub unsafe fn put_StatusBar(&self, Value: VARIANT_BOOL) -> HRESULT[src]

pub unsafe fn get_StatusText(&self, StatusText: *mut BSTR) -> HRESULT[src]

pub unsafe fn put_StatusText(&self, StatusText: BSTR) -> HRESULT[src]

pub unsafe fn get_ToolBar(&self, Value: *mut INT) -> HRESULT[src]

pub unsafe fn put_ToolBar(&self, Value: INT) -> HRESULT[src]

pub unsafe fn get_MenuBar(&self, Value: *mut VARIANT_BOOL) -> HRESULT[src]

pub unsafe fn put_MenuBar(&self, Value: VARIANT_BOOL) -> HRESULT[src]

pub unsafe fn get_FullScreen(&self, pbFullScreen: *mut VARIANT_BOOL) -> HRESULT[src]

pub unsafe fn put_FullScreen(&self, bFullScreen: VARIANT_BOOL) -> HRESULT[src]

Methods from Deref<Target = IWebBrowser>

pub unsafe fn GoBack(&self) -> HRESULT[src]

pub unsafe fn GoForward(&self) -> HRESULT[src]

pub unsafe fn GoHome(&self) -> HRESULT[src]

pub unsafe fn GoSearch(&self) -> HRESULT[src]

pub unsafe fn Navigate(
    &self,
    URL: BSTR,
    Flags: *const VARIANT,
    TargetFrameName: *const VARIANT,
    PostData: *const VARIANT,
    Headers: *const VARIANT
) -> HRESULT
[src]

pub unsafe fn Refresh(&self) -> HRESULT[src]

pub unsafe fn Refresh2(&self, Level: *const VARIANT) -> HRESULT[src]

pub unsafe fn Stop(&self) -> HRESULT[src]

pub unsafe fn get_Application(&self, ppDisp: *mut *mut IDispatch) -> HRESULT[src]

pub unsafe fn get_Parent(&self, ppDisp: *mut *mut IDispatch) -> HRESULT[src]

pub unsafe fn get_Container(&self, ppDisp: *mut *mut IDispatch) -> HRESULT[src]

pub unsafe fn get_Document(&self, ppDisp: *mut *mut IDispatch) -> HRESULT[src]

pub unsafe fn get_TopLevelContainer(&self, pBool: *mut VARIANT_BOOL) -> HRESULT[src]

pub unsafe fn get_Type(&self, Type: *mut BSTR) -> HRESULT[src]

pub unsafe fn get_Left(&self, pl: *mut LONG) -> HRESULT[src]

pub unsafe fn put_Left(&self, Left: LONG) -> HRESULT[src]

pub unsafe fn get_Top(&self, pl: *mut LONG) -> HRESULT[src]

pub unsafe fn put_Top(&self, Top: LONG) -> HRESULT[src]

pub unsafe fn get_Width(&self, pl: *mut LONG) -> HRESULT[src]

pub unsafe fn put_Width(&self, Width: LONG) -> HRESULT[src]

pub unsafe fn get_Height(&self, pl: *mut LONG) -> HRESULT[src]

pub unsafe fn put_Height(&self, Height: LONG) -> HRESULT[src]

pub unsafe fn get_LocationName(&self, LocationName: *mut BSTR) -> HRESULT[src]

pub unsafe fn get_LocationURL(&self, LocationURL: *mut BSTR) -> HRESULT[src]

pub unsafe fn get_Busy(&self, pBool: *mut VARIANT_BOOL) -> HRESULT[src]

Trait Implementations

impl Deref for IWebBrowserApp[src]

type Target = IWebBrowser

The resulting type after dereferencing.

impl Interface for IWebBrowserApp[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.