IVsPreliminaryTextChangeCommitEvents.OnChangesCommitted Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
public:
void OnChangesCommitted(System::UInt32 dwGestureFlags, cli::array <Microsoft::VisualStudio::TextManager::Interop::TextSpan> ^ ptsChanged);
public:
void OnChangesCommitted(unsigned int dwGestureFlags, Platform::Array <Microsoft::VisualStudio::TextManager::Interop::TextSpan> ^ ptsChanged);
void OnChangesCommitted(unsigned int dwGestureFlags, std::Array <Microsoft::VisualStudio::TextManager::Interop::TextSpan> const & ptsChanged);
public void OnChangesCommitted (uint dwGestureFlags, Microsoft.VisualStudio.TextManager.Interop.TextSpan[] ptsChanged);
abstract member OnChangesCommitted : uint32 * Microsoft.VisualStudio.TextManager.Interop.TextSpan[] -> unit
Public Sub OnChangesCommitted (dwGestureFlags As UInteger, ptsChanged As TextSpan())
Parameters
- dwGestureFlags
- UInt32
[In] Flags indicating the type of changes made. For a list of dwGestureFlags
values, see ChangeCommitGestureFlags.
- ptsChanged
- TextSpan[]
[In] Span of text modified.
Implements
Remarks
COM Signature
From textmgr.idl:
HRESULT IVsPreliminaryTextChangeCommitEvents::OnChangesCommitted(
[in] DWORD dwGestureFlags,
[in] TextSpan *ptsChanged
);