Modification

You can modify text after the initial creation, like this:

Text.Create(
	frame, -- Frame that already has text created within it.
	"This text has been modified!" -- New text.
)

You can even modify the options, like this:

Text.Create(
	frame,
	"This text has been modified!",
	{ -- New options (optional).
		Size = 12 -- Overwrite size.
		-- Everything else will stay like before!
	}
)
circle-info

It will retain all previous options, only overwriting with those you provide as new ones.

circle-check

Last updated