UndoContext.SetAborted (Método)

Actualización: noviembre 2007

Descarta todos los cambios en los documentos que se abran y utilicen a partir del momento en que se abra el objeto UndoContext.

Espacio de nombres:  EnvDTE
Ensamblado:  EnvDTE (en EnvDTE.dll)

Sintaxis

Sub SetAborted

Dim instance As UndoContext

instance.SetAborted()
void SetAborted()
void SetAborted()
function SetAborted()

Comentarios

SetAborted establece la propiedad IsAborted para el objeto UndoContext abierto en true. Cuando esto ocurre, se descartan todos los cambios realizados en los documentos utilizados desde que se abrió el objeto UndoContext hasta que se cerró el objeto UndoContext.

Ejemplos

Sub SetAbortedExample()
   ' Before running, select text in an open document.
   Dim txtSel As TextSelection
   Dim strTS As String, strAnswer As String, bIsOpen As Boolean
   txtSel = DTE.ActiveDocument.Selection
   strTS = txtSel.Text

   ' Check to see if UndoContext object is already open.
   If DTE.UndoContext.IsOpen = True Then
      bIsOpen = True
   Else
      ' Open the UndoContext object to track changes.
      DTE.UndoContext.Open("RemoveNewLines", False)
   End If
   MsgBox("Current IsAborted value: " & DTE.UndoContext.IsAborted)

   ' Perform search for newline characters and remove them.
   If strTS <> "" Then
      txtSel.Delete()
      strTS = Replace(strTS, vbNewLine, "", Compare:=vbTextCompare)
      txtSel.Insert(strTS)
   End If

   ' Check to see if you want to discard changes.
   strAnswer = MsgBox("Do you want to discard all changes made?", vbYesNo & vbQuestion)
   If strAnswer = True Then
      DTE.UndoContext.SetAborted()
      MsgBox("Current IsAborted value: " & DTE.UndoContext.IsAborted)
   End If

   ' If UndoContext was already open, don't close it.
   If bIsOpen = True Then
      ' Close the UndoContext object to commit the changes.
      DTE.UndoContext.Close()
   End If
End Sub

Permisos

Vea también

Referencia

UndoContext (Interfaz)

UndoContext (Miembros)

EnvDTE (Espacio de nombres)