Hello,
TV.AddNL('aaa',1,-1);
TV.AddNL('bbb',1,-1);
the result is: aaabbb .
How can I get the result: aaa bbb ?
thank you very much.
Can I customize distance of two items added by AddNL in one line?
-
- Site Admin
- Posts: 17555
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Re: Can I customize distance of two items added by AddNL in one line?
You can add a space character between them.
Re: Can I customize distance of two items added by AddNL in one line?
yes, adding space char is simple solution. by some reason, I don't want space char in item, is there a other solution?
-
- Site Admin
- Posts: 17555
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Re: Can I customize distance of two items added by AddNL in one line?
Sorry, inserting something between text items is the only solution. In TRichView, additional spacing to the left/right sides of text is not supported.
(it is possible only when using label items instead of text)
(it is possible only when using label items instead of text)
Re: Can I customize distance of two items added by AddNL in one line?
Thank you very much.