Trait winsafe::prelude::shell_IModalWindow

source ·
pub trait shell_IModalWindow: ole_IUnknown {
    // Provided method
    fn Show(&self, hwnd_owner: &HWND) -> HrResult<bool> { ... }
}
Available on crate features kernel and shell only.
Expand description

This trait is enabled with the shell feature, and provides methods for IModalWindow.

Prefer importing this trait through the prelude:

use winsafe::prelude::*;

Provided Methods§

source

fn Show(&self, hwnd_owner: &HWND) -> HrResult<bool>

IModalWindow::Show method.

Returns false if user clicked Cancel.

Object Safety§

This trait is not object safe.

Implementors§