TextSelection.TextPane الخاصية
حصل على جزء نص الذي يحتوي على محدد نص.
مساحة الاسم: EnvDTE
التجميع: EnvDTE (في EnvDTE.dll)
بناء الجملة
'إقرار
ReadOnly Property TextPane As TextPane
Get
TextPane TextPane { get; }
property TextPane^ TextPane {
TextPane^ get ();
}
abstract TextPane : TextPane
function get TextPane () : TextPane
قيمة الخاصية
النوع: EnvDTE.TextPane
كائن TextPane .
أمثلة
Sub TextPaneExample()
' Before running this example, open a code document.
Dim objSel As TextSelection = DTE.ActiveDocument.Selection
Dim objTP As TextPane = objSel.TextPane
' List text pane height and width property values.
MsgBox("Text pane height: " & objTP.Height & vbCr & "Text pane width: " & objTP.Width)
End Sub
أمن NET Framework.
- الثقة الكاملة للمتصل الفوري. يتعذر استخدام هذا العضو بواسطة التعليمات البرمجية الموثوق بها جزئيًا. لمزيد من المعلومات، راجع باستخدام مكتبات من تعليمات برمجية موثوق بها جزئي.