VCProjectReference.ItemName 属性
获取集合中的当前项的名称。
命名空间: Microsoft.VisualStudio.VCProjectEngine
程序集: Microsoft.VisualStudio.VCProjectEngine(在 Microsoft.VisualStudio.VCProjectEngine.dll 中)
语法
声明
ReadOnly Property ItemName As String
string ItemName { get; }
property String^ ItemName {
String^ get ();
}
abstract ItemName : string with get
function get ItemName () : String
属性值
类型:String
集合中的当前项的名称。
示例
有关如何编译和运行该示例的信息,请参见 如何:编译项目模型扩展性示例代码。
以下示例在开发环境使用 ItemName 属性:
' add reference to Microsoft.VisualStudio.VCProjectEngine
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine
Public Module Module1
Sub Test()
Dim mycollection As IVCCollection
Dim file As VCFile
Dim prj As VCProject
prj = DTE.Solution.Projects.Item(1).Object
mycollection = prj.Files
'mycollection.Count has count of files
file = mycollection.Item(1)
' file.ItemName has file name
End Sub
End Module
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关详细信息,请参阅通过部分受信任的代码使用库。