pub trait ICoreWebView2PrintSettings_Impl: Sized {
Show 26 methods // Required methods fn Orientation( &self, orientation: *mut COREWEBVIEW2_PRINT_ORIENTATION ) -> Result<(), Error>; fn SetOrientation( &self, orientation: COREWEBVIEW2_PRINT_ORIENTATION ) -> Result<(), Error>; fn ScaleFactor(&self, scalefactor: *mut f64) -> Result<(), Error>; fn SetScaleFactor(&self, scalefactor: f64) -> Result<(), Error>; fn PageWidth(&self, pagewidth: *mut f64) -> Result<(), Error>; fn SetPageWidth(&self, pagewidth: f64) -> Result<(), Error>; fn PageHeight(&self, pageheight: *mut f64) -> Result<(), Error>; fn SetPageHeight(&self, pageheight: f64) -> Result<(), Error>; fn MarginTop(&self, margintop: *mut f64) -> Result<(), Error>; fn SetMarginTop(&self, margintop: f64) -> Result<(), Error>; fn MarginBottom(&self, marginbottom: *mut f64) -> Result<(), Error>; fn SetMarginBottom(&self, marginbottom: f64) -> Result<(), Error>; fn MarginLeft(&self, marginleft: *mut f64) -> Result<(), Error>; fn SetMarginLeft(&self, marginleft: f64) -> Result<(), Error>; fn MarginRight(&self, marginright: *mut f64) -> Result<(), Error>; fn SetMarginRight(&self, marginright: f64) -> Result<(), Error>; fn ShouldPrintBackgrounds( &self, shouldprintbackgrounds: *mut BOOL ) -> Result<(), Error>; fn SetShouldPrintBackgrounds( &self, shouldprintbackgrounds: BOOL ) -> Result<(), Error>; fn ShouldPrintSelectionOnly( &self, shouldprintselectiononly: *mut BOOL ) -> Result<(), Error>; fn SetShouldPrintSelectionOnly( &self, shouldprintselectiononly: BOOL ) -> Result<(), Error>; fn ShouldPrintHeaderAndFooter( &self, shouldprintheaderandfooter: *mut BOOL ) -> Result<(), Error>; fn SetShouldPrintHeaderAndFooter( &self, shouldprintheaderandfooter: BOOL ) -> Result<(), Error>; fn HeaderTitle(&self, headertitle: *mut PWSTR) -> Result<(), Error>; fn SetHeaderTitle(&self, headertitle: &PCWSTR) -> Result<(), Error>; fn FooterUri(&self, footeruri: *mut PWSTR) -> Result<(), Error>; fn SetFooterUri(&self, footeruri: &PCWSTR) -> Result<(), Error>;
}

Required Methods§

source

fn Orientation( &self, orientation: *mut COREWEBVIEW2_PRINT_ORIENTATION ) -> Result<(), Error>

source

fn SetOrientation( &self, orientation: COREWEBVIEW2_PRINT_ORIENTATION ) -> Result<(), Error>

source

fn ScaleFactor(&self, scalefactor: *mut f64) -> Result<(), Error>

source

fn SetScaleFactor(&self, scalefactor: f64) -> Result<(), Error>

source

fn PageWidth(&self, pagewidth: *mut f64) -> Result<(), Error>

source

fn SetPageWidth(&self, pagewidth: f64) -> Result<(), Error>

source

fn PageHeight(&self, pageheight: *mut f64) -> Result<(), Error>

source

fn SetPageHeight(&self, pageheight: f64) -> Result<(), Error>

source

fn MarginTop(&self, margintop: *mut f64) -> Result<(), Error>

source

fn SetMarginTop(&self, margintop: f64) -> Result<(), Error>

source

fn MarginBottom(&self, marginbottom: *mut f64) -> Result<(), Error>

source

fn SetMarginBottom(&self, marginbottom: f64) -> Result<(), Error>

source

fn MarginLeft(&self, marginleft: *mut f64) -> Result<(), Error>

source

fn SetMarginLeft(&self, marginleft: f64) -> Result<(), Error>

source

fn MarginRight(&self, marginright: *mut f64) -> Result<(), Error>

source

fn SetMarginRight(&self, marginright: f64) -> Result<(), Error>

source

fn ShouldPrintBackgrounds( &self, shouldprintbackgrounds: *mut BOOL ) -> Result<(), Error>

source

fn SetShouldPrintBackgrounds( &self, shouldprintbackgrounds: BOOL ) -> Result<(), Error>

source

fn ShouldPrintSelectionOnly( &self, shouldprintselectiononly: *mut BOOL ) -> Result<(), Error>

source

fn SetShouldPrintSelectionOnly( &self, shouldprintselectiononly: BOOL ) -> Result<(), Error>

source

fn ShouldPrintHeaderAndFooter( &self, shouldprintheaderandfooter: *mut BOOL ) -> Result<(), Error>

source

fn SetShouldPrintHeaderAndFooter( &self, shouldprintheaderandfooter: BOOL ) -> Result<(), Error>

source

fn HeaderTitle(&self, headertitle: *mut PWSTR) -> Result<(), Error>

source

fn SetHeaderTitle(&self, headertitle: &PCWSTR) -> Result<(), Error>

source

fn FooterUri(&self, footeruri: *mut PWSTR) -> Result<(), Error>

source

fn SetFooterUri(&self, footeruri: &PCWSTR) -> Result<(), Error>

Object Safety§

This trait is not object safe.

Implementors§