pub trait IInkExtendedProperties_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Count(&self) -> Result<i32>;
    fn _NewEnum(&self) -> Result<IUnknown>;
    fn Item(&self, identifier: &VARIANT) -> Result<IInkExtendedProperty>;
    fn Add(&self, guid: &BSTR, data: &VARIANT) -> Result<IInkExtendedProperty>;
    fn Remove(&self, identifier: &VARIANT) -> Result<()>;
    fn Clear(&self) -> Result<()>;
    fn DoesPropertyExist(&self, guid: &BSTR) -> Result<VARIANT_BOOL>;
}

Required Methods§

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

fn _NewEnum(&self) -> Result<IUnknown>

fn Item(&self, identifier: &VARIANT) -> Result<IInkExtendedProperty>

fn Add(&self, guid: &BSTR, data: &VARIANT) -> Result<IInkExtendedProperty>

fn Remove(&self, identifier: &VARIANT) -> Result<()>

fn Clear(&self) -> Result<()>

fn DoesPropertyExist(&self, guid: &BSTR) -> Result<VARIANT_BOOL>

Object Safety§

This trait is not object safe.

Implementors§