pub trait INameSpaceTreeControl2_Impl: Sized + INameSpaceTreeControl_Impl {
    // Required methods
    fn SetControlStyle(&self, nstcsmask: u32, nstcsstyle: u32) -> Result<()>;
    fn GetControlStyle(&self, nstcsmask: u32) -> Result<u32>;
    fn SetControlStyle2(
        &self,
        nstcsmask: NSTCSTYLE2,
        nstcsstyle: NSTCSTYLE2
    ) -> Result<()>;
    fn GetControlStyle2(&self, nstcsmask: NSTCSTYLE2) -> Result<NSTCSTYLE2>;
}

Required Methods§

fn SetControlStyle(&self, nstcsmask: u32, nstcsstyle: u32) -> Result<()>

fn GetControlStyle(&self, nstcsmask: u32) -> Result<u32>

fn SetControlStyle2( &self, nstcsmask: NSTCSTYLE2, nstcsstyle: NSTCSTYLE2 ) -> Result<()>

fn GetControlStyle2(&self, nstcsmask: NSTCSTYLE2) -> Result<NSTCSTYLE2>

Object Safety§

This trait is not object safe.

Implementors§