Click or drag to resize

RichTextLabelAppendBbcode Method

Parses bbcode and adds tags to the tag stack as needed. Returns the result of the parsing, if successful.

Note: Using this method, you can't close a tag that was opened in a previous AppendBbcode(String) call. This is done to improve performance, especially when updating large RichTextLabels since rebuilding the whole BBCode every time would be slower. If you absolutely need to close a tag in a future method call, append the BbcodeText instead of using AppendBbcode(String).

Namespace:  Godot
Assembly:  GodotSharp (in GodotSharp.dll) Version: 1.0.0
Syntax
C#
public Error AppendBbcode(
	string bbcode
)

Parameters

bbcode
Type: SystemString

[Missing <param name="bbcode"/> documentation for "M:Godot.RichTextLabel.AppendBbcode(System.String)"]

Return Value

Type: Error

[Missing <returns> documentation for "M:Godot.RichTextLabel.AppendBbcode(System.String)"]

See Also