Maplets[Examples][Confirm] - maplet の確認ダイアログの表示
使い方
Confirm(msg, opts)
パラメータ
msg - 文字列または記号
opts - option=value の形の等式; ここで option は title または type のいずれか; maplet のためのオプション指定
|
説明
|
|
•
|
Confirm(msg) コマンドは、ユーザによる確認を求める maplet を表示します。ユーザは Yes, No または Cancel をクリックします。それぞれに対応して、true, false または FAIL の値が返されます。
|
•
|
opts 引数は、maplet のオプションを設定する、1つまたは複数の以下の等式を含みます。
|
|
title = string または symbol
|
|
maplet のタイトルの指定。デフォルトのタイトルは、Confirmation です。
|
|
type = `error`, plain, question または warning
|
|
確認の種類。デフォルトでは、plain です。このオプションは、テキストの左側に置かれるアイコンを決定します。
|
|
|
例
|
|
>
|
with(Maplets[Examples]):
Confirm("Close and return the result?", 'type' = question);
|
|
|
Download Help Document
Was this information helpful?