Q&A

  • 트리뷰의 Expand..
트리뷰의 FullExpand의 반대가 되는 Methord를 알고 싶은데 알수가 없을까여...

코딩으로

for i := 0 to level1_cnt do

begin

trvw_code.Items[i].Expand(false)

end;

이렇케 했는데 안되네여..



1  COMMENTS
  • Profile
    액션가면 2001.01.16 03:08


    반대되는 개념의 프로시져가 FullCollapse 이네염..

    차이점은 소스중에서 아래루틴에서..^^

    좋은하루되세염~



    procedure TTreeNode.Expand(Recurse: Boolean);

    begin

    ExpandItem(True, Recurse);

    end;



    procedure TTreeNode.Collapse(Recurse: Boolean);

    begin

    ExpandItem(False, Recurse);

    end;







    미남 wrote:

    > 트리뷰의 FullExpand의 반대가 되는 Methord를 알고 싶은데 알수가 없을까여...

    > 코딩으로

    > for i := 0 to level1_cnt do

    > begin

    > trvw_code.Items[i].Expand(false)

    > end;

    > 이렇케 했는데 안되네여..

    >