pub trait IPrintSchemaOption_Impl: Sized + IPrintSchemaDisplayableElement_Impl {
    // Required methods
    fn Selected(&self) -> Result<BOOL>;
    fn Constrained(&self) -> Result<PrintSchemaConstrainedSetting>;
    fn GetPropertyValue(
        &self,
        bstrname: &BSTR,
        bstrnamespaceuri: &BSTR
    ) -> Result<IUnknown>;
}

Required Methods§

fn Selected(&self) -> Result<BOOL>

fn Constrained(&self) -> Result<PrintSchemaConstrainedSetting>

fn GetPropertyValue( &self, bstrname: &BSTR, bstrnamespaceuri: &BSTR ) -> Result<IUnknown>

Object Safety§

This trait is not object safe.

Implementors§