Partager via


UndoContext.IsAborted, propriété

Obtient une valeur indiquant si l'opération exécutée par l'objet UndoContext a été arrêtée par la méthode SetAborted.

Espace de noms :  EnvDTE
Assembly :  EnvDTE (dans EnvDTE.dll)

Syntaxe

'Déclaration
ReadOnly Property IsAborted As Boolean
    Get
bool IsAborted { get; }
property bool IsAborted {
    bool get ();
}
abstract IsAborted : bool
function get IsAborted () : boolean

Valeur de propriété

Type : System.Boolean
Valeur booléenne indiquant true si l'opération a été abandonnée, false dans le cas contraire.

Notes

Si l'objet UndoContext est désactivé par SetAborted avant qu'il ne soit fermé, toutes les modifications effectuées dans les documents concernés seront ignorées lors de la fermeture de l'objet UndoContext.

Exemples

Sub IsAbortedExample()
   ' 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

Sécurité .NET Framework

Voir aussi

Référence

UndoContext Interface

EnvDTE, espace de noms