VCFilter.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
属性值
类型:System.String
一个表示项名称的字符串。
备注
有关如何编译和运行此示例的信息,请参见 如何:编译项目模型扩展性示例代码 。
示例
下面的示例在集成开发环境 (ide) 使用 ItemName 属性 (IDE):
' Macro code.
' 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 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。