pub trait ICoreWebView2_9_Impl: Sized + ICoreWebView2_8_Impl {
// Required methods
fn add_IsDefaultDownloadDialogOpenChanged(
&self,
handler: Option<&ICoreWebView2IsDefaultDownloadDialogOpenChangedEventHandler>,
token: *mut EventRegistrationToken
) -> Result<(), Error>;
fn remove_IsDefaultDownloadDialogOpenChanged(
&self,
token: &EventRegistrationToken
) -> Result<(), Error>;
fn IsDefaultDownloadDialogOpen(&self, value: *mut BOOL) -> Result<(), Error>;
fn OpenDefaultDownloadDialog(&self) -> Result<(), Error>;
fn CloseDefaultDownloadDialog(&self) -> Result<(), Error>;
fn DefaultDownloadDialogCornerAlignment(
&self,
value: *mut COREWEBVIEW2_DEFAULT_DOWNLOAD_DIALOG_CORNER_ALIGNMENT
) -> Result<(), Error>;
fn SetDefaultDownloadDialogCornerAlignment(
&self,
value: COREWEBVIEW2_DEFAULT_DOWNLOAD_DIALOG_CORNER_ALIGNMENT
) -> Result<(), Error>;
fn DefaultDownloadDialogMargin(
&self,
value: *mut POINT
) -> Result<(), Error>;
fn SetDefaultDownloadDialogMargin(&self, value: &POINT) -> Result<(), Error>;
}