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.
If you want to reset any of the customization options to the default, simply set it to false
.
Last updated