Clarified usage of TreeItem get_next*() and get_prev*() functions.
(cherry picked from commit df5a922880
)
This commit is contained in:
parent
14e3d478e1
commit
12968f3107
1 changed files with 4 additions and 4 deletions
|
@ -168,14 +168,14 @@
|
||||||
<method name="get_next">
|
<method name="get_next">
|
||||||
<return type="TreeItem" />
|
<return type="TreeItem" />
|
||||||
<description>
|
<description>
|
||||||
Returns the next TreeItem in the tree or a null object if there is none.
|
Returns the next sibling TreeItem in the tree or a null object if there is none.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="get_next_visible">
|
<method name="get_next_visible">
|
||||||
<return type="TreeItem" />
|
<return type="TreeItem" />
|
||||||
<argument index="0" name="wrap" type="bool" default="false" />
|
<argument index="0" name="wrap" type="bool" default="false" />
|
||||||
<description>
|
<description>
|
||||||
Returns the next visible TreeItem in the tree or a null object if there is none.
|
Returns the next visible sibling 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].
|
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].
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
|
@ -188,14 +188,14 @@
|
||||||
<method name="get_prev">
|
<method name="get_prev">
|
||||||
<return type="TreeItem" />
|
<return type="TreeItem" />
|
||||||
<description>
|
<description>
|
||||||
Returns the previous TreeItem in the tree or a null object if there is none.
|
Returns the previous sibling TreeItem in the tree or a null object if there is none.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="get_prev_visible">
|
<method name="get_prev_visible">
|
||||||
<return type="TreeItem" />
|
<return type="TreeItem" />
|
||||||
<argument index="0" name="wrap" type="bool" default="false" />
|
<argument index="0" name="wrap" type="bool" default="false" />
|
||||||
<description>
|
<description>
|
||||||
Returns the previous visible TreeItem in the tree or a null object if there is none.
|
Returns the previous visible sibling 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].
|
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].
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
|
|
Loading…
Reference in a new issue