Modification

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

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

You can even modify the customization after the creation, like this:

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

It will keep all previous customization options, only overwriting with those you provide in the table.

Last updated