مشاركة عبر


TextSelection.FindText أسلوب

البحث عن نص محدد من نشط الإشارة إلى إنهاء مستند.

مساحة الاسم:  EnvDTE
التجميع:  EnvDTE (في EnvDTE.dll)

بناء الجملة

'إقرار
Function FindText ( _
    Pattern As String, _
    vsFindOptionsValue As Integer _
) As Boolean
bool FindText(
    string Pattern,
    int vsFindOptionsValue
)
bool FindText(
    [InAttribute] String^ Pattern, 
    [InAttribute] int vsFindOptionsValue
)
abstract FindText : 
        Pattern:string * 
        vsFindOptionsValue:int -> bool 
function FindText(
    Pattern : String, 
    vsFindOptionsValue : int
) : boolean

المعلمات

  • Pattern
    النوع: System.String
    مطلوبة.نص إلى البحث عنها.
  • vsFindOptionsValue
    النوع: System.Int32
    اختياري.vsFindOptionsثابتة تشير إلى خيارات بحث للاستخدام.

القيمة المُرجعة

النوع: System.Boolean
قيمة منطقية تشير إلى trueإذا كان نص هو، falseإذا عدم.

ملاحظات

FindTextيبحث عن سلسلة نصية محددة من النهاية النشطة على نص محدد إلى إنهاء مستند نص. تشير القيمة التي يتم إرجاعها إلى ما إذا كان قد تم العثور على نص. إذا كان نص هو العثور على نقطة تحرير هو إلى بداية المباراة. Otherwهوe، والموقع تحرير هو بدون تغيير.

إذا كان نقش متطابق هو تعبير عادي وتحتوي على subexpressions ذات العلامات، ثم Tagsوسيطة بإرجاع مجموعة من TextRangeالكائنات، واحد لكل subexpression ذات العلامات.

أمثلة

Sub FindTextExample()
   ' Before running this example, open a text document.
   Dim objSel As TextSelection = DTE.ActiveDocument.Selection

   ' Looks for the first occurence of the word, test, in the current 
   ' document. If found, the line is selected.
   If objSel.FindText("test", vsFindOptions.vsFindOptionsFromStart) Then
      objSel.SelectLine()
   End If
End Sub

أمن NET Framework.

راجع أيضًَا

المرجع

TextSelection واجهة

TextSelection الأعضاء

EnvDTE مساحة الاسم