SetText - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


DocumentTools[Canvas][Script]

  

SetText

  

set the contents of a text canvas element

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

SetText(script,text,options)

Parameters

script

-

DocumentTools:-Canvas:-Script object

text

-

a string or Canvas:-Text element

insert

-

(optional) truefalse; default is false

container

-

(optional) "group" or "textbox"; default is "group"

where

-

(optional) "below", "right", "newgroup", or [nonnegint,nonnegint]

Description

• 

The SetText command sets the contents of a text canvas element.  By default it will set the contents of the active container, or, when the where option is specified, a container at absolute coordinates or relative to the active container.  

• 

There are two kinds of components that can contain text as denoted by the container option.  A "group" is a collection of math and/or text in a column block.  A "textbox" is an element that can contain only text.  In Maple Learn a "textbox" does not have a visible group label, but it does take up a content id.

• 

When the where option is set to "below", and the current active position is a group, the text will be set at the next position within the group.  If something already occupies the next spot, it will be overwritten, unless the insert option is set to true, in which case the group contents will be bumped down to make room for the new expression.  If the active position is at the end of a group, a new area will be added to the group regardless of the insert option setting.  When the current position is a textbox, a new group will be created below before inserting the text.

• 

When the where option is set to "right", a new group will be created to the right of the active element, into which the given text will be inserted.  Note that currently only "group" style containers can be inserted to the "right".

• 

The where="newgroup" option is similar to where="below" except the text will always be inserted into a new group created below the current group or text box.

• 

The insert setting is described above and only applies to the situation where text is being set "below" the active position of a group, and content already exists in the same group after that position.  When insert = true, room will be made to insert the new expression, as opposed to insert = false, where the behavior is to overwrite the expression that follows.

  

Note: insert=true is not currently supported for script actions within a Maple worksheet, but does apply to Maple Learn deployed scripts.

• 

Formatted text can be inserted by using the Canvas:-Text command.

• 

A "canvas" is an interactive section of a Maple document created by the NewCanvas command, or a shared web-based Maple Learn document.  See the Script command for a more complete description.

  

Note: The initial canvas in a Maple worksheet is created with a fixed size.  Inserting text may exceed that size, which will result in an error.  The ShowCanvas command has a size option that will let you create a size that will better fit your example.

Examples

One Command at a Time

• 

In this example, we will insert a canvas and manually add text

withDocumentTools:-Canvas:

cvNewCanvasBlank Canvas:

ShowCanvascv

scScript:

• 

make the title the active element

SetActivesc,0:0

• 

create a new group below

SetTextsc,Some text,where=below

• 

change the text

SetTextsc,revised text

• 

create a new group to the right

SetTextsc,column 2,where=right

• 

create a new row in the current group

SetTextsc,more text,where=below

• 

create a new group below

SetTextsc,new group,where=newgroup

• 

create a new textbox

SetTextsc,textbox container,where=below,container=textbox

• 

set the active component back to the top of the column, and revise the next two captions

SetActivesc,2:0

SetTextsc,revised column 2

SetTextsc,revised more text,where=below

• 

recreate the whole example with all of the script steps attached so that it can be played back in Maple Learn

cv2NewCanvasSetMath Example,sc:

ShareCanvascv2

Mixed Math and Text

• 

In this example, we will display paragraphs or titles that mix text and math.  

withDocumentTools:-Canvas:

cvNewCanvasBlank Canvas:

ShowCanvascv

scScript:

SetActivesc,0:0

SetTextsc,TextMix %1 and %2,x2,y2,where=below

SetTextsc,TextApply %1 formatting,_BOLDbold,where=below

• 

recreate the whole example with all of the script steps attached so that it can be played back in Maple Learn

cv2NewCanvasSetMath Example,sc:

ShareCanvascv2

Compatibility

• 

The DocumentTools[Canvas][Script][SetText] command was introduced in Maple 2021.

• 

For more information on Maple 2021 changes, see Updates in Maple 2021.

See Also

Math

NewCanvas

Script

SetActive

SetMath