SelectedItem.ProjectItem 속성
지정된 개체와 연결된 ProjectItem 개체를 가져옵니다.
네임스페이스: EnvDTE
어셈블리: EnvDTE(EnvDTE.dll)
구문
‘선언
ReadOnly Property ProjectItem As ProjectItem
ProjectItem ProjectItem { get; }
property ProjectItem^ ProjectItem {
ProjectItem^ get ();
}
abstract ProjectItem : ProjectItem with get
function get ProjectItem () : ProjectItem
속성 값
형식: EnvDTE.ProjectItem
ProjectItem 개체
예제
public void CodeExample(DTE2 dte)
{
try
{
// Open project and select one or more items in the
// solution explorer before running this example.
SelectedItem selItem;
string msg = "";
if (dte.SelectedItems.Count > 0)
{
selItem = dte.SelectedItems.Item(1);
msg = "The first selected item is " + selItem.Name;
msg += "\nThis SelectedItem corresponds to the following ProjectItem: " + selItem.ProjectItem.Name;
msg += "\nThis SelectedItem is part of a collection of " + selItem.Collection.Count.ToString() + " items.";
msg += "\nThis is contained in the following application: " + selItem.DTE.Name;
}
MessageBox.Show(msg);
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
}
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용를 참조하세요.