pub trait IUIAutomationMultipleViewPattern_Impl: Sized {
    // Required methods
    fn GetViewName(&self, view: i32) -> Result<BSTR>;
    fn SetCurrentView(&self, view: i32) -> Result<()>;
    fn CurrentCurrentView(&self) -> Result<i32>;
    fn GetCurrentSupportedViews(&self) -> Result<*mut SAFEARRAY>;
    fn CachedCurrentView(&self) -> Result<i32>;
    fn GetCachedSupportedViews(&self) -> Result<*mut SAFEARRAY>;
}

Required Methods§

fn GetViewName(&self, view: i32) -> Result<BSTR>

fn SetCurrentView(&self, view: i32) -> Result<()>

fn CurrentCurrentView(&self) -> Result<i32>

fn GetCurrentSupportedViews(&self) -> Result<*mut SAFEARRAY>

fn CachedCurrentView(&self) -> Result<i32>

fn GetCachedSupportedViews(&self) -> Result<*mut SAFEARRAY>

Object Safety§

This trait is not object safe.

Implementors§