CloudFilesContextMenuVerbBaseGetState Method |
IT Hit User File System
Gets state information associated with a specified Windows Explorer command item.
Namespace:
ITHit.FileSystem.Windows.ShellExtension
Assembly:
ITHit.FileSystem.Windows.ShellExtension (in ITHit.FileSystem.Windows.ShellExtension.dll) Version: 8.4.27341.0
Syntax public int GetState(
IShellItemArray itemArray,
bool okToBeSlow,
out EXPCMDSTATE commandState
)
Public Function GetState (
itemArray As IShellItemArray,
okToBeSlow As Boolean,
<OutAttribute> ByRef commandState As EXPCMDSTATE
) As Integer
public:
virtual int GetState(
IShellItemArray^ itemArray,
bool okToBeSlow,
[OutAttribute] EXPCMDSTATE% commandState
) sealed
abstract GetState :
itemArray : IShellItemArray *
okToBeSlow : bool *
commandState : EXPCMDSTATE byref -> int
override GetState :
itemArray : IShellItemArray *
okToBeSlow : bool *
commandState : EXPCMDSTATE byref -> int
Parameters
- itemArray
- Type: IShellItemArray
Shell Item array. - okToBeSlow
- Type: SystemBoolean
FALSE if a verb object should not perform any memory intensive computations that could cause the UI thread to stop responding. The verb object should return E_PENDING in that case. If TRUE, those computations can be completed. - commandState
- Type: EXPCMDSTATE
One or more Windows Explorer command states.
Return Value
Type:
Int32If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.
Implements
IExplorerCommand.GetState(IShellItemArray, Boolean, EXPCMDSTATE)See Also