IVsTaskItem::put_Checked Method (Int32)
Visual Studio 2015
Sets whether a task item's check box is selected or cleared.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Parameters
- fChecked
-
Type:
System::Int32
[in] If true, then the check box is selected. If false, then the check box is cleared.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell.idl:
HRESULT IVsTaskItem::put_Checked(
[in] BOOL fChecked
);
Implement this method only if you want the check box to be modifiable by the user.
Show: