CommandButtonで中央寄せで表示する方法

【ご質問】
CommandButtonで、text-breakable?をtrueにセットし、2行で表示時に
左寄せで文字が表示されます。
中央寄せで表示する方法を教えてください。

【回答】
“paragraph-justify=center”を指定したTextFlowBoxを
CommandButton.labelに設定することで実現可能となります。

{curl 6.0,7.0,8.0 applet}
{curl-file-attributes character-encoding = “shift-jis”}

{let text:TextFlowBox = {TextFlowBox
                            paragraph-justify = “center”,
                            “あああああいいいいいうううううええ”
                        }
}

{let btn:CommandButton = {CommandButton
                             width = 60pt,
                             text-breakable? = true,
                             label = (text asa Label)
                         }
}

{VBox
    btn
}

詳細は、APIリファレンスの
[CURL.GUI.BASE]-[TextFlowBox]の項と
上記項内のプロパティ[paragraph-justify]の項をご参照ください。