Jump to content

UniSpeedButton Align


shawdown

Recommended Posts

Hello friends.
 
uniGUI Version 1.0.2.1442 Beta.

How to align caption text left on a TUniSpeedButton?
 
In the last stable version of unigui I just assigned the caption with html desired.
But in the beta this does not work.
 
UniSpeedButton1.Caption := '<div style="text-align: left;">Button Caption</div>';

 

Link to comment
Share on other sites

Hi,

 

uniGUI Version 1.0.2.1442 Beta.


How to align caption text left on a TUniSpeedButton?
 
In the last stable version of unigui I just assigned the caption with html desired.
But in the beta this does not work.
 
UniSpeedButton1.Caption := '<div style="text-align: left;">Button Caption</div>'

 

One possible solution I think:

 

UniSpeedButton -> ...

function afterrender(sender, eOpts)
{
    sender.btnInnerEl.setStyle('width', '100%');
}
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...