IVsProjectResources Interface
Manages resource (.RESX) files for .NET Designers. Most often used to manage localized resources. You can get an instance of the interface by querying IVsHierarchy.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
<GuidAttribute("3F819030-50CF-4B72-B3FC-B3B9BFBBEE69")> _
<InterfaceTypeAttribute()> _
Public Interface IVsProjectResources
[GuidAttribute("3F819030-50CF-4B72-B3FC-B3B9BFBBEE69")]
[InterfaceTypeAttribute()]
public interface IVsProjectResources
[GuidAttribute(L"3F819030-50CF-4B72-B3FC-B3B9BFBBEE69")]
[InterfaceTypeAttribute()]
public interface class IVsProjectResources
[<GuidAttribute("3F819030-50CF-4B72-B3FC-B3B9BFBBEE69")>]
[<InterfaceTypeAttribute()>]
type IVsProjectResources = interface end
public interface IVsProjectResources
The IVsProjectResources type exposes the following members.
Methods
Name | Description | |
---|---|---|
CreateResourceDocData | Creates a DocData object for a resource item. | |
GetResourceItem | Gets a resource item and adds it to the project. Commonly used to add a culture-specific resource. |
Top