diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-02-14 15:22:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-14 15:22:03 +0100 |
commit | 89996be091051a43d6ef98573285c234d13d78d5 (patch) | |
tree | 6e44965607439b5b8fc6d9063f8a3c1bffcbe9e3 /doc/classes | |
parent | af98de882337cfff38780642a4892edf8e89a888 (diff) | |
parent | ae7eec53c00fa30bc4527937a79dd01f0c31050a (diff) |
Merge pull request #57988 from markdibarry/add_get_last_visible_character_line
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/RichTextLabel.xml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/classes/RichTextLabel.xml b/doc/classes/RichTextLabel.xml index 6a2812bb93..cb733f34ca 100644 --- a/doc/classes/RichTextLabel.xml +++ b/doc/classes/RichTextLabel.xml @@ -49,6 +49,20 @@ Clears the tag stack and sets [member text] to an empty string. </description> </method> + <method name="get_character_line"> + <return type="int" /> + <argument index="0" name="character" type="int" /> + <description> + Returns the line number of the character position provided. + </description> + </method> + <method name="get_character_paragraph"> + <return type="int" /> + <argument index="0" name="character" type="int" /> + <description> + Returns the paragraph number of the character position provided. + </description> + </method> <method name="get_content_height" qualifiers="const"> <return type="int" /> <description> |