IVsUIShell.EnableModeless(Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Enables or disables a frame's modeless dialog box.
public:
int EnableModeless(int fEnable);
public:
int EnableModeless(int fEnable);
int EnableModeless(int fEnable);
public int EnableModeless (int fEnable);
abstract member EnableModeless : int -> int
Public Function EnableModeless (fEnable As Integer) As Integer
Parameters
- fEnable
- Int32
[in] true
when exiting a modal state. false
when entering a modal state.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsUIShell::EnableModeless(
[in] BOOL fEnable
);
This method is used by any VSPackage implementer that needs to display a modal dialog and that is not already involved in an in-place relationship (for example, IVsWindowPane implementers or global command handlers).
This method is identical to the EnableModeless method.