hi. how to make a new line in button text?
<?php
$T = 10;
$L = 10;
$W = 25;
$H = 12;
$ButtonOne = new Button($this->UCID, 'btnBG', 'Example')->T($T)->L($L)->W($W)->H($H)->BStyle(ISB_DARK)->Send();
$ButtonTwo = new Button($this->UCID, 'btnText1', 'Example')->T($T+1)->L($L+1)->W($W)->H(5)->Text("Line 1")->Send();
$ButtonThree = new Button($this->UCID, 'btnText2', 'Example')->T($T+6)->L($L+1)->W($W)->H(5)->Text("Line 2")->Send();
?>