diff --git a/doc/classes/TreeItem.xml b/doc/classes/TreeItem.xml index 2bb0abef9b7..adcbc84dbf5 100644 --- a/doc/classes/TreeItem.xml +++ b/doc/classes/TreeItem.xml @@ -118,7 +118,7 @@ - Returns the TreeItem's child items. + Returns the TreeItem's first child item or a null object if there is none. @@ -196,7 +196,7 @@ - Returns the next TreeItem in the tree. + Returns the next TreeItem in the tree or a null object if there is none. @@ -205,7 +205,7 @@ - Returns the next visible TreeItem in the tree. + Returns the next visible TreeItem in the tree or a null object if there is none. If [code]wrap[/code] is enabled, the method will wrap around to the first visible element in the tree when called on the last visible element, otherwise it returns [code]null[/code]. @@ -213,14 +213,14 @@ - Returns the parent TreeItem. + Returns the parent TreeItem or a null object if there is none. - Returns the previous TreeItem in the tree. + Returns the previous TreeItem in the tree or a null object if there is none. @@ -229,7 +229,7 @@ - Returns the previous visible TreeItem in the tree. + Returns the previous visible TreeItem in the tree or a null object if there is none. If [code]wrap[/code] is enabled, the method will wrap around to the last visible element in the tree when called on the first visible element, otherwise it returns [code]null[/code].