vb.net我需要导入什么才能使用textrange?

时间:2013-06-03 15:41:37

标签: vb.net

我正在尝试使用

以下代码将richtextbox内容更改为文本,如。

Dim tr As New TextRange(rtb.Document.ContentStart, rtb.Document.ContentEnd)

documentText = tr

        Dim titleMatch As Match = Regex.Match(documentText, expression, options)

但是它没有定义Type'TextRange'。 请给我任何建议。

1 个答案:

答案 0 :(得分:4)

您需要导入System.Windows.Documents

您可以通过查看documentation for TextRange

来查看此内容
  

命名空间:System.Windows.Documents

     

程序集:PresentationFramework(在PresentationFramework.dll中)