Package::IOleCommandTarget::QueryStatus Method (Guid, UInt32, array<OLECMD>^, IntPtr)
Visual Studio 2015
Queries the object for the status of one or more commands generated by user interface events.
Assembly: Microsoft.VisualStudio.Shell.14.0 (in Microsoft.VisualStudio.Shell.14.0.dll)
private: virtual int QueryStatus( Guid% guidGroup, unsigned int nCmdId, array<OLECMD>^ oleCmd, IntPtr oleText ) sealed = IOleCommandTarget::QueryStatus
Parameters
- guidGroup
-
Type:
System::Guid
The GUID of the command group to which the command belongs.
- nCmdId
-
Type:
System::UInt32
The number of elements in the oleCmd array. In Visual Studio this number is always 1.
- oleCmd
-
Type:
array<Microsoft.VisualStudio.OLE.Interop::OLECMD>^
An array of OLECMD structures representing the commands being queried.
- oleText
-
Type:
System::IntPtr
A pointer to an OLECMDTEXT structure in which to return name and/or status information for a single command. Can be null to indicate that the caller does not need this information.
Return Value
Type: System::Int32S_OK if the method succeeded, otherwise an error code. This method returns OLECMDERR_E_NOTSUPPORTED if no instance of IOleCommandTarget can be found.
Show: