Solution3.Item 方法
返回 Projects 集合的一个索引成员。
命名空间: EnvDTE90
程序集: EnvDTE90(在 EnvDTE90.dll 中)
语法
声明
Function Item ( _
index As Object _
) As Project
Project Item(
Object index
)
Project^ Item(
[InAttribute] Object^ index
)
abstract Item :
index:Object -> Project
function Item(
index : Object
) : Project
参数
- index
类型:Object
返回值
类型:Project
一个 Project 对象。
备注
传递给 Index 的值是一个整数,该整数是某对象在其集合中的索引。 Index 的值还可以是等同于集合中某个对象的字符串值。 但是,Item 接受的精确值取决于集合及其实现。
如果集合找不到对应于索引值的对象,则 Item 方法引发 ArgumentException 异常。
示例
有关如何运行此外接程序代码的信息,请参见如何:编译和运行自动化对象模型代码示例。
Public Sub OnConnection(ByVal application As Object, _
ByVal connectMode As ext_ConnectMode, ByVal addInInst As Object, _
ByRef custom As Array) Implements IDTExtensibility2.OnConnection
_applicationObject = CType(application, DTE2)
_addInInstance = CType(addInInst, AddIn)
SolnItemExample(_applicationObject)
End Sub
Sub SolnItemExample(ByVal dte As DTE2)
' This add-in iterates through project items in a solution.
' Make sure you have a solution open in Visual
' Studio before running this example.
Try
Dim soln As Solution3 = _
CType(_applicationObject.Solution, Solution3)
' Dim solnName As String = _
System.IO.Path.GetFileNameWithoutExtension(soln.FullName)
Dim tempString As String = "The items in the solution are: " _
& vbCr
For i As Integer = 1 To soln.Projects.Count
tempString = tempString & soln.Item(i).Name.ToString() _
& vbCr
Next
MsgBox(tempString)
Catch ex As System.Exception
MsgBox(ex.ToString)
End Try
End Sub
using System.Windows.Forms;
public void OnConnection(object application,
Extensibility.ext_ConnectMode connectMode, object addInInst,
ref System.Array custom)
{
_applicationObject = (DTE2)application;
_addInInstance = (AddIn)addInInst;
// Pass the applicationObject member variable to the code example.
SolnItemExample((DTE2)_applicationObject);
}
public void SolnItemExample(DTE2 dte)
{
// This add-in iterates through the project items in a solution.
// Open a solution in Visual Studio before running
// this example.
try
{
Solution3 soln = (Solution3)_applicationObject.Solution;
String tempString = "The items in the solution are: " + "\n";
for (int i = 1; i <= soln.Projects.Count; i++)
{
tempString = tempString + soln.Item(i).Name.ToString()
+ "\n";
}
MessageBox.Show(tempString);
}
catch (SystemException ex)
{
MessageBox.Show("ERROR: " + ex);
}
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关详细信息,请参阅通过部分受信任的代码使用库。