问题
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...
回答1:
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;
}
回答2:
Can you give this a try?
Dim objSelection As TextSelection = DTE.ActiveDocument.Selection
来源:https://stackoverflow.com/questions/10606274/in-visualstudio-dte-how-to-get-the-contents-of-the-activedocument