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

Online Help

All Products    Maple    MapleSim


Maplets[Examples]

  

Question

  

display a Maplet application that poses a question

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

Question(msg, opts)

Parameters

msg

-

string or symbol

opts

-

equation(s) of the form title=value; specify options for the Maplet application

Description

• 

The Question(msg) calling sequence displays a Maplet application that asks the user a binary (yes or no) question.  The user can click Yes or No. The value returned is true or false, respectively.

• 

The Question sample Maplet worksheet describes how to write a Maplet application that behaves similarly to this routine by using the Maplets[Elements] package.

• 

The opts argument can contain one or more of the following equations that set Maplet application options.

  

 

  

title = string or symbol

  

Specifies the Maplet application title.  By default, the title is Question.

Examples

withMapletsExamples:

QuestionIs x positive?

See Also

Maplets[Elements]

Maplets[Elements][QuestionDialog]

Maplets[Examples]

Overview of Maplet Applications

Question Sample Maplet