IOleInPlaceComponent.FQueryClose Method
Queries an in-place VSPackage object to determine whether or not the object can terminate.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function FQueryClose ( _
fPromptUser As Integer _
) As Integer
int FQueryClose(
int fPromptUser
)
int FQueryClose(
[InAttribute] int fPromptUser
)
abstract FQueryClose :
fPromptUser:int -> int
function FQueryClose(
fPromptUser : int
) : int
Parameters
- fPromptUser
Type: Int32
Return Value
Type: Int32
FQueryClose returns true if the method succeeded or if saving is not required and false if the save failed or if saving is not possible.
Remarks
COM Signature
From oleipc.idl:
BOOL IOleInPlaceComponent::FQueryClose(
[in] BOOL fPromptUser
);
FQueryClose is called as part of the environment's closing process. The environment calls the FQueryClose method of each one of its in-place objects. An in-place object should save all unsaved data unless the user has elected to discard changes.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.