Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3942708
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T00:41:43+00:00 2026-05-20T00:41:43+00:00

Is there a way to copy the full type name of a class/interface/etc. in

  • 0

Is there a way to copy the full type name of a class/interface/etc. in Visual Studio to the clipboard? In particular, I need them for Castle Windsor configuration and would love to figure out how to do this effortlessly. (Example: highlight IInterface in the code editor and end up with My.Full.Namespace.Is.Here.IInterface on the clipboard.)

VS puts the full type name in a read-only combobox in the upper left (which is utterly useless for copying purposes); does anyone know a way?

(I have ReSharper, if there’s a way to do it using that.)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T00:41:43+00:00Added an answer on May 20, 2026 at 12:41 am

    Here’s a macro which does which should get you going. The error handling is abysmal but I couldn’t muster more, I absolutely hate VB 🙂

    Also note that it only captures a class type name or interface type name, you can run it where ever you want while your cursor is inside a class or interface definition. It will capture the name of the class/interface scope.

    It runs the Clipboard call in a thread, because it’s a Windows Forms component and they need to run in a STAThread.

    It copies the full typename to the clipboard.

    Imports System
    Imports EnvDTE
    Imports EnvDTE80
    Imports EnvDTE90
    Imports EnvDTE90a
    Imports EnvDTE100
    Imports System.Diagnostics
    
    Public Module SkurmedelMacros
    
        Public Sub SetClipboard(ByVal x As Object)
            System.Windows.Forms.Clipboard.SetText(CStr(x), System.Windows.Forms.TextDataFormat.Text)
        End Sub
    
        Public Sub GetTypeName()
            Dim solution As Solution = DTE.Solution
            Dim activePoint As TextPoint = CType(DTE.ActiveDocument.Selection, TextSelection).ActivePoint
            Dim codeElem As CodeElement = _
                DTE.ActiveDocument.ProjectItem.FileCodeModel.CodeElementFromPoint(activePoint, vsCMElement.vsCMElementClass)
            If codeElem Is Nothing Then
                codeElem = DTE.ActiveDocument.ProjectItem.FileCodeModel.CodeElementFromPoint(activePoint, vsCMElement.vsCMElementInterface)
            End If
    
            Dim ClipBoardThread As System.Threading.Thread = New System.Threading.Thread(AddressOf SetClipboard)
            With ClipBoardThread
                .ApartmentState = System.Threading.ApartmentState.STA
                .IsBackground = True
                .Start(codeElem.FullName)
                .Join()
            End With
            ClipBoardThread = Nothing
    
        End Sub
    
    
    End Module
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any way to copy all lines from open file to clipboard in
Is there way to copy a file into Plone with WebDAV and have Plone
Is there a way to copy View output column headers along with the data?
Is there any way to copy text from a TextView that has User Interaction
Is there a way to copy msi log file in scope of installation procces
Hey all. Is there a way to copy only a portion of a single
is there a way to batch copy certain wikipedia articles(about 10,000) to my own
Is there an easy way to copy all stored procedures from one database to
Is there a way to specify actions like <copy> in an Ant buildfile that
Is there a simple way to accept the working copy as is in Subversion?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.