TreeNodeCollection.Item[] 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
컬렉션에 있는 트리 노드를 가져오거나 설정합니다.
오버로드
Item[Int32] |
컬렉션의 지정한 인덱싱된 위치에 있는 TreeNode를 가져오거나 설정합니다. |
Item[String] |
지정된 키가 있는 트리 노드를 컬렉션에서 가져옵니다. |
Item[Int32]
컬렉션의 지정한 인덱싱된 위치에 있는 TreeNode를 가져오거나 설정합니다.
public:
virtual property System::Windows::Forms::TreeNode ^ default[int] { System::Windows::Forms::TreeNode ^ get(int index); void set(int index, System::Windows::Forms::TreeNode ^ value); };
public virtual System.Windows.Forms.TreeNode this[int index] { get; set; }
member this.Item(int) : System.Windows.Forms.TreeNode with get, set
Default Public Overridable Property Item(index As Integer) As TreeNode
매개 변수
속성 값
컬렉션에서 지정된 인덱스 위치에 있는 TreeNode입니다.
예외
.NET 6 이상 버전: index
null
index
값이 0보다 작거나 컬렉션의 마지막 인덱스보다 큽니다.
예제
다음 코드 예제에서는 속성 TreeNode.Text 이 "Node0"으로 TreeView 설정된 경우에서 첫 번째 TreeNode 를 제거합니다. 를 Button 클릭하면 메서드를 사용하여 RemoveAt 첫 번째 TreeNode TreeView 항목이 삭제됩니다. 이 예제에서는 a 및 Button onForm을 TreeView 만들어야 합니다. 첫 번째 TreeNode 텍스트 TreeView 속성은 "Node0"이어야 합니다.
void button2_Click( Object^ /*sender*/, EventArgs^ /*e*/ )
{
// Delete the first TreeNode in the collection
// if the Text property is S"Node0."
if ( this->treeView1->Nodes[ 0 ]->Text->Equals( "Node0" ) )
{
this->treeView1->Nodes->RemoveAt( 0 );
}
}
private void button2_Click(object sender, EventArgs e)
{
// Delete the first TreeNode in the collection
// if the Text property is "Node0."
if(this.treeView1.Nodes[0].Text == "Node0")
{
this.treeView1.Nodes.RemoveAt(0);
}
}
Private Sub button2_Click(sender As Object, e As EventArgs) Handles button2.Click
' Delete the first TreeNode in the collection
' if the Text property is "Node0."
If Me.treeView1.Nodes(0).Text = "Node0" Then
Me.treeView1.Nodes.RemoveAt(0)
End If
End Sub
설명
특정 위치에 개체를 할당 TreeNode 하거나 개체를 TreeNodeCollection검색하려면 특정 인덱스 값으로 컬렉션 개체를 참조할 수 있습니다. 인덱스 값을 TreeNodeCollection 인덱스가 0부터 시작 합니다.
추가 정보
적용 대상
Item[String]
지정된 키가 있는 트리 노드를 컬렉션에서 가져옵니다.
public:
virtual property System::Windows::Forms::TreeNode ^ default[System::String ^] { System::Windows::Forms::TreeNode ^ get(System::String ^ key); };
public virtual System.Windows.Forms.TreeNode this[string key] { get; }
member this.Item(string) : System.Windows.Forms.TreeNode
Default Public Overridable ReadOnly Property Item(key As String) As TreeNode
매개 변수
속성 값
지정된 키를 가진 TreeNode입니다.
설명
Name 키에 해당 하는 속성을 TreeNode 에 TreeNodeCollection합니다.
키 비교는 대/소문자 구분 하지 않습니다. 매개 변수 또는 key
null
빈 문자열이면 속성이 Item[] 반환됩니다 null
.