pub trait ISharedPropertyGroup_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn CreatePropertyByPosition(
        &self,
        index: i32,
        fexists: *mut VARIANT_BOOL,
        ppprop: *mut Option<ISharedProperty>
    ) -> Result<()>;
    fn get_PropertyByPosition(&self, index: i32) -> Result<ISharedProperty>;
    fn CreateProperty(
        &self,
        name: &BSTR,
        fexists: *mut VARIANT_BOOL,
        ppprop: *mut Option<ISharedProperty>
    ) -> Result<()>;
    fn get_Property(&self, name: &BSTR) -> Result<ISharedProperty>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§