123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719 |
- :github_url: hide
- .. DO NOT EDIT THIS FILE!!!
- .. Generated automatically from Godot engine sources.
- .. Generator: https://github.com/godotengine/godot/tree/4.0/doc/tools/make_rst.py.
- .. XML source: https://github.com/godotengine/godot/tree/4.0/doc/classes/TextParagraph.xml.
- .. _class_TextParagraph:
- TextParagraph
- =============
- **Inherits:** :ref:`RefCounted<class_RefCounted>` **<** :ref:`Object<class_Object>`
- Holds a paragraph of text.
- .. rst-class:: classref-introduction-group
- Description
- -----------
- Abstraction over :ref:`TextServer<class_TextServer>` for handling a single paragraph of text.
- .. rst-class:: classref-reftable-group
- Properties
- ----------
- .. table::
- :widths: auto
- +-------------------------------------------------------------------+----------------------------------------------------------------------------------+-----------+
- | :ref:`HorizontalAlignment<enum_@GlobalScope_HorizontalAlignment>` | :ref:`alignment<class_TextParagraph_property_alignment>` | ``0`` |
- +-------------------------------------------------------------------+----------------------------------------------------------------------------------+-----------+
- | :ref:`LineBreakFlag<enum_TextServer_LineBreakFlag>` | :ref:`break_flags<class_TextParagraph_property_break_flags>` | ``3`` |
- +-------------------------------------------------------------------+----------------------------------------------------------------------------------+-----------+
- | :ref:`String<class_String>` | :ref:`custom_punctuation<class_TextParagraph_property_custom_punctuation>` | ``""`` |
- +-------------------------------------------------------------------+----------------------------------------------------------------------------------+-----------+
- | :ref:`Direction<enum_TextServer_Direction>` | :ref:`direction<class_TextParagraph_property_direction>` | ``0`` |
- +-------------------------------------------------------------------+----------------------------------------------------------------------------------+-----------+
- | :ref:`JustificationFlag<enum_TextServer_JustificationFlag>` | :ref:`justification_flags<class_TextParagraph_property_justification_flags>` | ``3`` |
- +-------------------------------------------------------------------+----------------------------------------------------------------------------------+-----------+
- | :ref:`int<class_int>` | :ref:`max_lines_visible<class_TextParagraph_property_max_lines_visible>` | ``-1`` |
- +-------------------------------------------------------------------+----------------------------------------------------------------------------------+-----------+
- | :ref:`Orientation<enum_TextServer_Orientation>` | :ref:`orientation<class_TextParagraph_property_orientation>` | ``0`` |
- +-------------------------------------------------------------------+----------------------------------------------------------------------------------+-----------+
- | :ref:`bool<class_bool>` | :ref:`preserve_control<class_TextParagraph_property_preserve_control>` | ``false`` |
- +-------------------------------------------------------------------+----------------------------------------------------------------------------------+-----------+
- | :ref:`bool<class_bool>` | :ref:`preserve_invalid<class_TextParagraph_property_preserve_invalid>` | ``true`` |
- +-------------------------------------------------------------------+----------------------------------------------------------------------------------+-----------+
- | :ref:`OverrunBehavior<enum_TextServer_OverrunBehavior>` | :ref:`text_overrun_behavior<class_TextParagraph_property_text_overrun_behavior>` | ``0`` |
- +-------------------------------------------------------------------+----------------------------------------------------------------------------------+-----------+
- | :ref:`float<class_float>` | :ref:`width<class_TextParagraph_property_width>` | ``-1.0`` |
- +-------------------------------------------------------------------+----------------------------------------------------------------------------------+-----------+
- .. rst-class:: classref-reftable-group
- Methods
- -------
- .. table::
- :widths: auto
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`add_object<class_TextParagraph_method_add_object>` **(** :ref:`Variant<class_Variant>` key, :ref:`Vector2<class_Vector2>` size, :ref:`InlineAlignment<enum_@GlobalScope_InlineAlignment>` inline_align=5, :ref:`int<class_int>` length=1, :ref:`float<class_float>` baseline=0.0 **)** |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`add_string<class_TextParagraph_method_add_string>` **(** :ref:`String<class_String>` text, :ref:`Font<class_Font>` font, :ref:`int<class_int>` font_size, :ref:`String<class_String>` language="", :ref:`Variant<class_Variant>` meta=null **)** |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`clear<class_TextParagraph_method_clear>` **(** **)** |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`clear_dropcap<class_TextParagraph_method_clear_dropcap>` **(** **)** |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`draw<class_TextParagraph_method_draw>` **(** :ref:`RID<class_RID>` canvas, :ref:`Vector2<class_Vector2>` pos, :ref:`Color<class_Color>` color=Color(1, 1, 1, 1), :ref:`Color<class_Color>` dc_color=Color(1, 1, 1, 1) **)** |const| |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`draw_dropcap<class_TextParagraph_method_draw_dropcap>` **(** :ref:`RID<class_RID>` canvas, :ref:`Vector2<class_Vector2>` pos, :ref:`Color<class_Color>` color=Color(1, 1, 1, 1) **)** |const| |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`draw_dropcap_outline<class_TextParagraph_method_draw_dropcap_outline>` **(** :ref:`RID<class_RID>` canvas, :ref:`Vector2<class_Vector2>` pos, :ref:`int<class_int>` outline_size=1, :ref:`Color<class_Color>` color=Color(1, 1, 1, 1) **)** |const| |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`draw_line<class_TextParagraph_method_draw_line>` **(** :ref:`RID<class_RID>` canvas, :ref:`Vector2<class_Vector2>` pos, :ref:`int<class_int>` line, :ref:`Color<class_Color>` color=Color(1, 1, 1, 1) **)** |const| |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`draw_line_outline<class_TextParagraph_method_draw_line_outline>` **(** :ref:`RID<class_RID>` canvas, :ref:`Vector2<class_Vector2>` pos, :ref:`int<class_int>` line, :ref:`int<class_int>` outline_size=1, :ref:`Color<class_Color>` color=Color(1, 1, 1, 1) **)** |const| |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`draw_outline<class_TextParagraph_method_draw_outline>` **(** :ref:`RID<class_RID>` canvas, :ref:`Vector2<class_Vector2>` pos, :ref:`int<class_int>` outline_size=1, :ref:`Color<class_Color>` color=Color(1, 1, 1, 1), :ref:`Color<class_Color>` dc_color=Color(1, 1, 1, 1) **)** |const| |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`int<class_int>` | :ref:`get_dropcap_lines<class_TextParagraph_method_get_dropcap_lines>` **(** **)** |const| |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`RID<class_RID>` | :ref:`get_dropcap_rid<class_TextParagraph_method_get_dropcap_rid>` **(** **)** |const| |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`Vector2<class_Vector2>` | :ref:`get_dropcap_size<class_TextParagraph_method_get_dropcap_size>` **(** **)** |const| |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`float<class_float>` | :ref:`get_line_ascent<class_TextParagraph_method_get_line_ascent>` **(** :ref:`int<class_int>` line **)** |const| |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`int<class_int>` | :ref:`get_line_count<class_TextParagraph_method_get_line_count>` **(** **)** |const| |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`float<class_float>` | :ref:`get_line_descent<class_TextParagraph_method_get_line_descent>` **(** :ref:`int<class_int>` line **)** |const| |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`Rect2<class_Rect2>` | :ref:`get_line_object_rect<class_TextParagraph_method_get_line_object_rect>` **(** :ref:`int<class_int>` line, :ref:`Variant<class_Variant>` key **)** |const| |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`Array<class_Array>` | :ref:`get_line_objects<class_TextParagraph_method_get_line_objects>` **(** :ref:`int<class_int>` line **)** |const| |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`Vector2i<class_Vector2i>` | :ref:`get_line_range<class_TextParagraph_method_get_line_range>` **(** :ref:`int<class_int>` line **)** |const| |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`RID<class_RID>` | :ref:`get_line_rid<class_TextParagraph_method_get_line_rid>` **(** :ref:`int<class_int>` line **)** |const| |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`Vector2<class_Vector2>` | :ref:`get_line_size<class_TextParagraph_method_get_line_size>` **(** :ref:`int<class_int>` line **)** |const| |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`float<class_float>` | :ref:`get_line_underline_position<class_TextParagraph_method_get_line_underline_position>` **(** :ref:`int<class_int>` line **)** |const| |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`float<class_float>` | :ref:`get_line_underline_thickness<class_TextParagraph_method_get_line_underline_thickness>` **(** :ref:`int<class_int>` line **)** |const| |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`float<class_float>` | :ref:`get_line_width<class_TextParagraph_method_get_line_width>` **(** :ref:`int<class_int>` line **)** |const| |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`Vector2<class_Vector2>` | :ref:`get_non_wrapped_size<class_TextParagraph_method_get_non_wrapped_size>` **(** **)** |const| |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`RID<class_RID>` | :ref:`get_rid<class_TextParagraph_method_get_rid>` **(** **)** |const| |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`Vector2<class_Vector2>` | :ref:`get_size<class_TextParagraph_method_get_size>` **(** **)** |const| |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`int<class_int>` | :ref:`hit_test<class_TextParagraph_method_hit_test>` **(** :ref:`Vector2<class_Vector2>` coords **)** |const| |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`resize_object<class_TextParagraph_method_resize_object>` **(** :ref:`Variant<class_Variant>` key, :ref:`Vector2<class_Vector2>` size, :ref:`InlineAlignment<enum_@GlobalScope_InlineAlignment>` inline_align=5, :ref:`float<class_float>` baseline=0.0 **)** |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_bidi_override<class_TextParagraph_method_set_bidi_override>` **(** :ref:`Array<class_Array>` override **)** |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`set_dropcap<class_TextParagraph_method_set_dropcap>` **(** :ref:`String<class_String>` text, :ref:`Font<class_Font>` font, :ref:`int<class_int>` font_size, :ref:`Rect2<class_Rect2>` dropcap_margins=Rect2(0, 0, 0, 0), :ref:`String<class_String>` language="" **)** |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`tab_align<class_TextParagraph_method_tab_align>` **(** :ref:`PackedFloat32Array<class_PackedFloat32Array>` tab_stops **)** |
- +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- .. rst-class:: classref-section-separator
- ----
- .. rst-class:: classref-descriptions-group
- Property Descriptions
- ---------------------
- .. _class_TextParagraph_property_alignment:
- .. rst-class:: classref-property
- :ref:`HorizontalAlignment<enum_@GlobalScope_HorizontalAlignment>` **alignment** = ``0``
- .. rst-class:: classref-property-setget
- - void **set_alignment** **(** :ref:`HorizontalAlignment<enum_@GlobalScope_HorizontalAlignment>` value **)**
- - :ref:`HorizontalAlignment<enum_@GlobalScope_HorizontalAlignment>` **get_alignment** **(** **)**
- Paragraph horizontal alignment.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_property_break_flags:
- .. rst-class:: classref-property
- :ref:`LineBreakFlag<enum_TextServer_LineBreakFlag>` **break_flags** = ``3``
- .. rst-class:: classref-property-setget
- - void **set_break_flags** **(** :ref:`LineBreakFlag<enum_TextServer_LineBreakFlag>` value **)**
- - :ref:`LineBreakFlag<enum_TextServer_LineBreakFlag>` **get_break_flags** **(** **)**
- Line breaking rules. For more info see :ref:`TextServer<class_TextServer>`.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_property_custom_punctuation:
- .. rst-class:: classref-property
- :ref:`String<class_String>` **custom_punctuation** = ``""``
- .. rst-class:: classref-property-setget
- - void **set_custom_punctuation** **(** :ref:`String<class_String>` value **)**
- - :ref:`String<class_String>` **get_custom_punctuation** **(** **)**
- Custom punctuation character list, used for word breaking. If set to empty string, server defaults are used.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_property_direction:
- .. rst-class:: classref-property
- :ref:`Direction<enum_TextServer_Direction>` **direction** = ``0``
- .. rst-class:: classref-property-setget
- - void **set_direction** **(** :ref:`Direction<enum_TextServer_Direction>` value **)**
- - :ref:`Direction<enum_TextServer_Direction>` **get_direction** **(** **)**
- Text writing direction.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_property_justification_flags:
- .. rst-class:: classref-property
- :ref:`JustificationFlag<enum_TextServer_JustificationFlag>` **justification_flags** = ``3``
- .. rst-class:: classref-property-setget
- - void **set_justification_flags** **(** :ref:`JustificationFlag<enum_TextServer_JustificationFlag>` value **)**
- - :ref:`JustificationFlag<enum_TextServer_JustificationFlag>` **get_justification_flags** **(** **)**
- Line alignment rules. For more info see :ref:`TextServer<class_TextServer>`.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_property_max_lines_visible:
- .. rst-class:: classref-property
- :ref:`int<class_int>` **max_lines_visible** = ``-1``
- .. rst-class:: classref-property-setget
- - void **set_max_lines_visible** **(** :ref:`int<class_int>` value **)**
- - :ref:`int<class_int>` **get_max_lines_visible** **(** **)**
- Limits the lines of text shown.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_property_orientation:
- .. rst-class:: classref-property
- :ref:`Orientation<enum_TextServer_Orientation>` **orientation** = ``0``
- .. rst-class:: classref-property-setget
- - void **set_orientation** **(** :ref:`Orientation<enum_TextServer_Orientation>` value **)**
- - :ref:`Orientation<enum_TextServer_Orientation>` **get_orientation** **(** **)**
- Text orientation.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_property_preserve_control:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **preserve_control** = ``false``
- .. rst-class:: classref-property-setget
- - void **set_preserve_control** **(** :ref:`bool<class_bool>` value **)**
- - :ref:`bool<class_bool>` **get_preserve_control** **(** **)**
- If set to ``true`` text will display control characters.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_property_preserve_invalid:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **preserve_invalid** = ``true``
- .. rst-class:: classref-property-setget
- - void **set_preserve_invalid** **(** :ref:`bool<class_bool>` value **)**
- - :ref:`bool<class_bool>` **get_preserve_invalid** **(** **)**
- If set to ``true`` text will display invalid characters.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_property_text_overrun_behavior:
- .. rst-class:: classref-property
- :ref:`OverrunBehavior<enum_TextServer_OverrunBehavior>` **text_overrun_behavior** = ``0``
- .. rst-class:: classref-property-setget
- - void **set_text_overrun_behavior** **(** :ref:`OverrunBehavior<enum_TextServer_OverrunBehavior>` value **)**
- - :ref:`OverrunBehavior<enum_TextServer_OverrunBehavior>` **get_text_overrun_behavior** **(** **)**
- Sets the clipping behavior when the text exceeds the paragraph's set width. See :ref:`OverrunBehavior<enum_TextServer_OverrunBehavior>` for a description of all modes.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_property_width:
- .. rst-class:: classref-property
- :ref:`float<class_float>` **width** = ``-1.0``
- .. rst-class:: classref-property-setget
- - void **set_width** **(** :ref:`float<class_float>` value **)**
- - :ref:`float<class_float>` **get_width** **(** **)**
- Paragraph width.
- .. rst-class:: classref-section-separator
- ----
- .. rst-class:: classref-descriptions-group
- Method Descriptions
- -------------------
- .. _class_TextParagraph_method_add_object:
- .. rst-class:: classref-method
- :ref:`bool<class_bool>` **add_object** **(** :ref:`Variant<class_Variant>` key, :ref:`Vector2<class_Vector2>` size, :ref:`InlineAlignment<enum_@GlobalScope_InlineAlignment>` inline_align=5, :ref:`int<class_int>` length=1, :ref:`float<class_float>` baseline=0.0 **)**
- Adds inline object to the text buffer, ``key`` must be unique. In the text, object is represented as ``length`` object replacement characters.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_add_string:
- .. rst-class:: classref-method
- :ref:`bool<class_bool>` **add_string** **(** :ref:`String<class_String>` text, :ref:`Font<class_Font>` font, :ref:`int<class_int>` font_size, :ref:`String<class_String>` language="", :ref:`Variant<class_Variant>` meta=null **)**
- Adds text span and font to draw it.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_clear:
- .. rst-class:: classref-method
- void **clear** **(** **)**
- Clears text paragraph (removes text and inline objects).
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_clear_dropcap:
- .. rst-class:: classref-method
- void **clear_dropcap** **(** **)**
- Removes dropcap.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_draw:
- .. rst-class:: classref-method
- void **draw** **(** :ref:`RID<class_RID>` canvas, :ref:`Vector2<class_Vector2>` pos, :ref:`Color<class_Color>` color=Color(1, 1, 1, 1), :ref:`Color<class_Color>` dc_color=Color(1, 1, 1, 1) **)** |const|
- Draw all lines of the text and drop cap into a canvas item at a given position, with ``color``. ``pos`` specifies the top left corner of the bounding box.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_draw_dropcap:
- .. rst-class:: classref-method
- void **draw_dropcap** **(** :ref:`RID<class_RID>` canvas, :ref:`Vector2<class_Vector2>` pos, :ref:`Color<class_Color>` color=Color(1, 1, 1, 1) **)** |const|
- Draw drop cap into a canvas item at a given position, with ``color``. ``pos`` specifies the top left corner of the bounding box.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_draw_dropcap_outline:
- .. rst-class:: classref-method
- void **draw_dropcap_outline** **(** :ref:`RID<class_RID>` canvas, :ref:`Vector2<class_Vector2>` pos, :ref:`int<class_int>` outline_size=1, :ref:`Color<class_Color>` color=Color(1, 1, 1, 1) **)** |const|
- Draw drop cap outline into a canvas item at a given position, with ``color``. ``pos`` specifies the top left corner of the bounding box.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_draw_line:
- .. rst-class:: classref-method
- void **draw_line** **(** :ref:`RID<class_RID>` canvas, :ref:`Vector2<class_Vector2>` pos, :ref:`int<class_int>` line, :ref:`Color<class_Color>` color=Color(1, 1, 1, 1) **)** |const|
- Draw single line of text into a canvas item at a given position, with ``color``. ``pos`` specifies the top left corner of the bounding box.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_draw_line_outline:
- .. rst-class:: classref-method
- void **draw_line_outline** **(** :ref:`RID<class_RID>` canvas, :ref:`Vector2<class_Vector2>` pos, :ref:`int<class_int>` line, :ref:`int<class_int>` outline_size=1, :ref:`Color<class_Color>` color=Color(1, 1, 1, 1) **)** |const|
- Draw outline of the single line of text into a canvas item at a given position, with ``color``. ``pos`` specifies the top left corner of the bounding box.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_draw_outline:
- .. rst-class:: classref-method
- void **draw_outline** **(** :ref:`RID<class_RID>` canvas, :ref:`Vector2<class_Vector2>` pos, :ref:`int<class_int>` outline_size=1, :ref:`Color<class_Color>` color=Color(1, 1, 1, 1), :ref:`Color<class_Color>` dc_color=Color(1, 1, 1, 1) **)** |const|
- Draw outlines of all lines of the text and drop cap into a canvas item at a given position, with ``color``. ``pos`` specifies the top left corner of the bounding box.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_get_dropcap_lines:
- .. rst-class:: classref-method
- :ref:`int<class_int>` **get_dropcap_lines** **(** **)** |const|
- Returns number of lines used by dropcap.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_get_dropcap_rid:
- .. rst-class:: classref-method
- :ref:`RID<class_RID>` **get_dropcap_rid** **(** **)** |const|
- Returns drop cap text buffer RID.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_get_dropcap_size:
- .. rst-class:: classref-method
- :ref:`Vector2<class_Vector2>` **get_dropcap_size** **(** **)** |const|
- Returns drop cap bounding box size.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_get_line_ascent:
- .. rst-class:: classref-method
- :ref:`float<class_float>` **get_line_ascent** **(** :ref:`int<class_int>` line **)** |const|
- Returns the text line ascent (number of pixels above the baseline for horizontal layout or to the left of baseline for vertical).
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_get_line_count:
- .. rst-class:: classref-method
- :ref:`int<class_int>` **get_line_count** **(** **)** |const|
- Returns number of lines in the paragraph.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_get_line_descent:
- .. rst-class:: classref-method
- :ref:`float<class_float>` **get_line_descent** **(** :ref:`int<class_int>` line **)** |const|
- Returns the text line descent (number of pixels below the baseline for horizontal layout or to the right of baseline for vertical).
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_get_line_object_rect:
- .. rst-class:: classref-method
- :ref:`Rect2<class_Rect2>` **get_line_object_rect** **(** :ref:`int<class_int>` line, :ref:`Variant<class_Variant>` key **)** |const|
- Returns bounding rectangle of the inline object.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_get_line_objects:
- .. rst-class:: classref-method
- :ref:`Array<class_Array>` **get_line_objects** **(** :ref:`int<class_int>` line **)** |const|
- Returns array of inline objects in the line.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_get_line_range:
- .. rst-class:: classref-method
- :ref:`Vector2i<class_Vector2i>` **get_line_range** **(** :ref:`int<class_int>` line **)** |const|
- Returns character range of the line.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_get_line_rid:
- .. rst-class:: classref-method
- :ref:`RID<class_RID>` **get_line_rid** **(** :ref:`int<class_int>` line **)** |const|
- Returns TextServer line buffer RID.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_get_line_size:
- .. rst-class:: classref-method
- :ref:`Vector2<class_Vector2>` **get_line_size** **(** :ref:`int<class_int>` line **)** |const|
- Returns size of the bounding box of the line of text.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_get_line_underline_position:
- .. rst-class:: classref-method
- :ref:`float<class_float>` **get_line_underline_position** **(** :ref:`int<class_int>` line **)** |const|
- Returns pixel offset of the underline below the baseline.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_get_line_underline_thickness:
- .. rst-class:: classref-method
- :ref:`float<class_float>` **get_line_underline_thickness** **(** :ref:`int<class_int>` line **)** |const|
- Returns thickness of the underline.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_get_line_width:
- .. rst-class:: classref-method
- :ref:`float<class_float>` **get_line_width** **(** :ref:`int<class_int>` line **)** |const|
- Returns width (for horizontal layout) or height (for vertical) of the line of text.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_get_non_wrapped_size:
- .. rst-class:: classref-method
- :ref:`Vector2<class_Vector2>` **get_non_wrapped_size** **(** **)** |const|
- Returns the size of the bounding box of the paragraph, without line breaks.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_get_rid:
- .. rst-class:: classref-method
- :ref:`RID<class_RID>` **get_rid** **(** **)** |const|
- Returns TextServer full string buffer RID.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_get_size:
- .. rst-class:: classref-method
- :ref:`Vector2<class_Vector2>` **get_size** **(** **)** |const|
- Returns the size of the bounding box of the paragraph.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_hit_test:
- .. rst-class:: classref-method
- :ref:`int<class_int>` **hit_test** **(** :ref:`Vector2<class_Vector2>` coords **)** |const|
- Returns caret character offset at the specified coordinates. This function always returns a valid position.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_resize_object:
- .. rst-class:: classref-method
- :ref:`bool<class_bool>` **resize_object** **(** :ref:`Variant<class_Variant>` key, :ref:`Vector2<class_Vector2>` size, :ref:`InlineAlignment<enum_@GlobalScope_InlineAlignment>` inline_align=5, :ref:`float<class_float>` baseline=0.0 **)**
- Sets new size and alignment of embedded object.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_set_bidi_override:
- .. rst-class:: classref-method
- void **set_bidi_override** **(** :ref:`Array<class_Array>` override **)**
- Overrides BiDi for the structured text.
- Override ranges should cover full source text without overlaps. BiDi algorithm will be used on each range separately.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_set_dropcap:
- .. rst-class:: classref-method
- :ref:`bool<class_bool>` **set_dropcap** **(** :ref:`String<class_String>` text, :ref:`Font<class_Font>` font, :ref:`int<class_int>` font_size, :ref:`Rect2<class_Rect2>` dropcap_margins=Rect2(0, 0, 0, 0), :ref:`String<class_String>` language="" **)**
- Sets drop cap, overrides previously set drop cap. Drop cap (dropped capital) is a decorative element at the beginning of a paragraph that is larger than the rest of the text.
- .. rst-class:: classref-item-separator
- ----
- .. _class_TextParagraph_method_tab_align:
- .. rst-class:: classref-method
- void **tab_align** **(** :ref:`PackedFloat32Array<class_PackedFloat32Array>` tab_stops **)**
- Aligns paragraph to the given tab-stops.
- .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
- .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
- .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
- .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
- .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
- .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
|