Q&A

  • Tree view를 선택했을때 그게 어떤 값(인덱스)인지 알려면 어케 해야 하나요..?
Tree view를 선택했을때 그게 어떤 값(인덱스)인지 프로그램 소스 내에서 알려면 어케 해야 하나요..?





빠른 답변 부탁드립니다.



1  COMMENTS
  • Profile
    irookie 2001.11.07 18:03
    TreeView1.Selected.뭐뭐뭐 를 이용합니다.



    ex)

    TreeView1.Selected.Index;

    -> Specifies the position of the node in the list of child nodes maintained by its parent node.



    TreeView1.Selected.Count;

    -> Indicates the number of direct descendants of a tree node.



    TreeView1.Selected.Text;

    -> Specifies the label that identifies a tree node.



    그럼, 20000





    ------



    초보 wrote:

    > Tree view를 선택했을때 그게 어떤 값(인덱스)인지 프로그램 소스 내에서 알려면 어케 해야 하나요..?

    >

    >

    > 빠른 답변 부탁드립니다.

    >