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!
}
)
You can reset any of the customization options to the default by simply setting it to false
.
Last updated