From 5f60853843bffc94ce8897b94f97df3b5e91ff43 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 28 Oct 2002 20:20:35 +0000 Subject: [PATCH] documented DeleteChildren git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17643 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- docs/latex/wx/treectrl.tex | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/docs/latex/wx/treectrl.tex b/docs/latex/wx/treectrl.tex index 894fafe40d..5ca2768e30 100644 --- a/docs/latex/wx/treectrl.tex +++ b/docs/latex/wx/treectrl.tex @@ -233,13 +233,23 @@ Creates the tree control. See \helpref{wxTreeCtrl::wxTreeCtrl}{wxtreectrlconstr} \func{void}{Delete}{\param{const wxTreeItemId\&}{ item}} -Deletes the specified item. +Deletes the specified item. A {\tt EVT\_TREE\_DELETE\_ITEM} event will be +generated. \membersection{wxTreeCtrl::DeleteAllItems}\label{wxtreectrldeleteallitems} \func{void}{DeleteAllItems}{\void} -Deletes all the items in the control. +Deletes all the items in the control. Note that this will {\bf not} generate +any events unlike \helpref{Delete}{wxtreectrldelete} method. + +\membersection{wxTreeCtrl::DeleteChildren}\label{wxtreectrldeletechildren} + +\func{void}{DeleteChildren}{\param{const wxTreeItemId\& }{item}} + +Deletes all children of the given item (but not the item itself). Note that +this will {\bf not} generate any events unlike +\helpref{Delete}{wxtreectrldelete} method. \membersection{wxTreeCtrl::EditLabel}\label{wxtreectrleditlabel}