Im writing a visual studio (2010) extension with a right click menu whilst in a code view. I want to be able to examine the current code from my menu item event handler but havent been able to find somewhere in the object model to do this.

How do i access the code in the current window in a visual studio extension?

====EDIT==== Heres the code i used to get the current document text

 DTE dte = Package.GetGlobalService(typeof(DTE)) as DTE ;
 TextDocument activeDoc = dte.ActiveDocument.Object() as TextDocument;

 var text = activeDoc.CreateEditPoint(activeDoc.StartPoint).GetText(activeDoc.EndPoint);
link|improve this question

1  
Are you starting from a MEF component? If so do you have an ITextView or do you want to grab the active one? – JaredPar Jan 28 at 2:53
@JaredPar I think its MPF, i couldn't work out how to use MEF to connect to VS, i just started from the VSPackage template. – Luke McGregor Jan 28 at 4:54
feedback

1 Answer

up vote 2 down vote accepted

You may be looking for

Document doc = DTE.ActiveDocument;
TextDocument txt = doc.Object() as TextDocument;

You should then be able to edit work with the TextDocument as needed.

link|improve this answer
Ok ive gotten the TextDocument, but i cant work out how to get the current code from the document – Luke McGregor Jan 28 at 6:42
There's not much room in comments so I'll just point you to what on MSDN you should be looking at. Look up StartPoint on the Document object, It's a TextPoint which has methods to access CodeElement's. And if you look at CodeElement on MSDN‌​. This example might be useful. – Mark Smith Jan 28 at 14:25
Brilliant thanks for your help – Luke McGregor Jan 29 at 2:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.