IVsTaskProvider3.OnEndTaskEdit Method

Called when the user finishes editing a task in-place. fCommitChanges indicates whether the user chose to commit the changes or discard them. This method may set *pfAllowChanges to FALSE to disallow the user from exiting edit mode. If fCommitChanges is TRUE, the changes will have already been persisted down to the task item.

Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)

Syntax

‘선언
Function OnEndTaskEdit ( _
    pItem As IVsTaskItem, _
    fCommitChanges As Integer, _
    <OutAttribute> ByRef pfAllowChanges As Integer _
) As Integer
‘사용 방법
Dim instance As IVsTaskProvider3
Dim pItem As IVsTaskItem
Dim fCommitChanges As Integer
Dim pfAllowChanges As Integer
Dim returnValue As Integer

returnValue = instance.OnEndTaskEdit(pItem, _
    fCommitChanges, pfAllowChanges)
int OnEndTaskEdit(
    IVsTaskItem pItem,
    int fCommitChanges,
    out int pfAllowChanges
)
int OnEndTaskEdit(
    [InAttribute] IVsTaskItem^ pItem, 
    [InAttribute] int fCommitChanges, 
    [OutAttribute] int% pfAllowChanges
)
abstract OnEndTaskEdit : 
        pItem:IVsTaskItem * 
        fCommitChanges:int * 
        pfAllowChanges:int byref -> int 
function OnEndTaskEdit(
    pItem : IVsTaskItem, 
    fCommitChanges : int, 
    pfAllowChanges : int
) : int

Parameters

  • fCommitChanges
    Type: System.Int32
    [in] A Boolean value set to TRUE if the user chooses to commit the changes.
  • pfAllowChanges
    Type: System.Int32%
    [out] A Boolean value set to FALSE to disallow the user from exiting edit mode, or to TRUE if the changes were already persisted down to the task item.

Return Value

Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Remarks

COM Signature

From vsshell80.idl:

HRESULT IVsTaskProvider3::OnEndTaskEdit(
   [in] IVsTaskItem* pItem, 
   [in] BOOL fCommitChanges, 
   [out] BOOL* pfAllowChanges
);

.NET Framework Security

See Also

Reference

IVsTaskProvider3 Interface

IVsTaskProvider3 Members

Microsoft.VisualStudio.Shell.Interop Namespace