namespace of the project item

cyuksel

Newcomer
Joined
Mar 14, 2003
Messages
18
Location
turkey
hello divil,

i want to ask a new question. i want to get the namespace of
the active project item by using DTE.

But i can't get, do you know how i can do this?

can i get the namespace from the projectitem object or active
document?

thanks.
 
You can return the root namespace with the following:
Code:
project.Properties("RootNamespace").Value
I don't believe individual project items (within the DTE scripting system) have namespace properties however.
 
Back
Top