In VisualStudio DTE, how to get the contents of th

2019-06-17 04:26发布

I'm scripting inside VisualStudio and am trying to get the contents of the currently ActiveDocument.

This is my current solution:

var visualStudio = new API_VisualStudio_2010();

var vsDTE = visualStudio.VsAddIn.VS_Dte;

var document = (Document)vsDTE.ActiveDocument;
var textDocument = (TextDocument)document.Object("TextDocument");

var editPoint = textDocument.StartPoint.CreateEditPoint();
var text = editPoint.GetText(textDocument.EndPoint.CreateEditPoint());

panel.clear().add_SourceCodeViewer()
     .set_Text(text,  document.FullName.extension());

Is this the best way?

I got the solution from: Because ActiveDocument.Text() Would Be Too Easy...

2条回答
聊天终结者
2楼-- · 2019-06-17 04:57

Can you give this a try?

Dim objSelection As TextSelection = DTE.ActiveDocument.Selection
查看更多
The star\"
3楼-- · 2019-06-17 05:01

This is working for me

protected DTE2 dte;
dte2 = (EnvDTE80.DTE2)GetService(typeof(EnvDTE.DTE));

public string GetCurrentTextFile(){

  TextDocument doc = (TextDocument)(dte.ActiveDocument.Object("TextDocument"));
  var p = doc.StartPoint.CreateEditPoint();
  string s = p.GetText(doc.EndPoint);

  return s;            
}
查看更多
登录 后发表回答