VCProject.ReferencesConsumableByDesigners Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the collection of references that are consumable by designers in the active solution configuration.
public:
property System::Object ^ ReferencesConsumableByDesigners { System::Object ^ get(); };
public:
property Platform::Object ^ ReferencesConsumableByDesigners { Platform::Object ^ get(); };
[System.Runtime.InteropServices.DispId(849)]
public object ReferencesConsumableByDesigners { [System.Runtime.InteropServices.DispId(849)] [System.Runtime.InteropServices.TypeLibFunc(System.Runtime.InteropServices.TypeLibFuncFlags.FNonBrowsable)] get; }
[<System.Runtime.InteropServices.DispId(849)>]
[<get: System.Runtime.InteropServices.DispId(849)>]
[<get: System.Runtime.InteropServices.TypeLibFunc(System.Runtime.InteropServices.TypeLibFuncFlags.FNonBrowsable)>]
member this.ReferencesConsumableByDesigners : obj
Public ReadOnly Property ReferencesConsumableByDesigners As Object
Property Value
An object representing a collection of references.
- Attributes
Examples
See How to: Compile Example Code for Project Model Extensibility for information about how to compile and run this example.
' Add a reference to Microsoft.VisualStudio.VCProjectEngine and have a
' Visual C++ project loaded before running this example.
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine
Public Module Module1
Sub Test()
Dim sln As Solution
Dim prj As VCProject
prj = DTE.Solution.Item(1).Object
MsgBox("Consumable refs: " & _
prj.ReferencesConsumableByDesigners.ToString)
End Sub
End Module