UndoContext.Open أسلوب
Starts a جديد مرحلة التراجع تشغيل.
مساحة الاسم: EnvDTE
التجميع: EnvDTE (في EnvDTE.dll)
بناء الجملة
'إقرار
Sub Open ( _
Name As String, _
Strict As Boolean _
)
void Open(
string Name,
bool Strict
)
void Open(
[InAttribute] String^ Name,
[InAttribute] bool Strict
)
abstract Open :
Name:string *
Strict:bool -> unit
function Open(
Name : String,
Strict : boolean
)
المعلمات
- Name
النوع: System.String
مطلوبة.Represents the اسم of the إجراء for which إلى provide an مرحلة التراجع سياق.
- Strict
النوع: System.Boolean
اختياري.Indicates whether the مرحلة التراجع مكدس linkage هو strict.الافتراضي value هوFalse.
ملاحظات
If the UndoContext كائن هو already فتح when the Open أسلوب هو performed, it produces an خطأ.
If مرحلة التراجع مكدس linkage هو strict, الجميع the linked مرحلة التراجع sibling stacks must be undone together أو not at الجميع. A strict linked مرحلة التراجع تشغيل هو usually necessary for simultaneous نص التغييرات عبر multiple ملفات, such كـ a ملف الرأس و a Visual C++ file. This هو, في fact, the model used في Visual Studio. For المزيد معلومات حول مرحلة التراجع مكدس إضافة ارتباطات, see the OpenLinkedUndo أسلوب.
أمثلة
Sub OpenExample()
' Before running, select text in an open document.
Dim txtSel As TextSelection
Dim strTS As String, boolWasOpen As Boolean
txtSel = DTE.ActiveDocument.Selection
strTS = txtSel.Text
' Check to see if UndoContext object is already open.
If DTE.UndoContext.IsOpen = True Then
boolWasOpen = True
Else
' Open the UndoContext object to track changes.
DTE.UndoContext.Open("RemoveNewLines", False)
End If
' Perform search for newline characters and remove them.
If strTS <> "" Then
txtSel.Delete()
strTS = Replace(strTS, vbNewLine, "", Compare:=vbTextCompare)
txtSel.Insert(strTS)
End If
' If UndoContext was already open, don't close it.
If boolWasOpen = False Then
' Close the UndoContext object to commit the changes.
DTE.UndoContext.Close()
End If
End Sub
أمن NET Framework.
- الثقة الكاملة للمتصل الفوري. يتعذر استخدام هذا العضو بواسطة التعليمات البرمجية الموثوق بها جزئيًا. لمزيد من المعلومات، راجع باستخدام مكتبات من تعليمات برمجية موثوق بها جزئي.