Trait windows::Win32::System::Ole::IOleInPlaceUIWindow_Impl

pub trait IOleInPlaceUIWindow_Impl: Sized + IOleWindow_Impl {
    // Required methods
    fn GetBorder(&self) -> Result<RECT>;
    fn RequestBorderSpace(&self, pborderwidths: *const RECT) -> Result<()>;
    fn SetBorderSpace(&self, pborderwidths: *const RECT) -> Result<()>;
    fn SetActiveObject(
        &self,
        pactiveobject: Option<&IOleInPlaceActiveObject>,
        pszobjname: &PCWSTR,
    ) -> Result<()>;
}

Required Methods§

fn GetBorder(&self) -> Result<RECT>

fn RequestBorderSpace(&self, pborderwidths: *const RECT) -> Result<()>

fn SetBorderSpace(&self, pborderwidths: *const RECT) -> Result<()>

fn SetActiveObject( &self, pactiveobject: Option<&IOleInPlaceActiveObject>, pszobjname: &PCWSTR, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§