Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Other Languages
»
Portuguese
»
Quebra de linha no CheckBox
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
Forum Rules
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
(Solved)TUpDown KeyDown ...
by
LeP
[April 15, 2026, 11:21:09 pm]
AI assisted translation o...
by
MathMan
[April 15, 2026, 10:47:11 pm]
Zipper: Addition of mult...
by
marcov
[April 15, 2026, 10:35:15 pm]
Ann: Deinline: a de-inlin...
by
LeP
[April 15, 2026, 07:08:42 pm]
Seeking advice on setting...
by
gidesa
[April 15, 2026, 07:02:04 pm]
GTK3: FillRect() mispaint...
by
baldzhang
[April 15, 2026, 06:32:52 pm]
C header function with on...
by
440bx
[April 15, 2026, 05:43:53 pm]
Lazarus Image Editor
by
Paolo
[April 15, 2026, 05:37:30 pm]
Delimited text - how find...
by
Kropotkin46
[April 15, 2026, 02:46:04 pm]
Ann: DeCoperators
by
Thaddy
[April 15, 2026, 01:29:40 pm]
RunFormula: math expressi...
by
Handoko
[April 15, 2026, 01:24:30 pm]
How to merge multiple cla...
by
cdbc
[April 15, 2026, 12:48:42 pm]
PWM signals, atmega328p, ...
by
pascalbythree
[April 15, 2026, 12:39:25 pm]
FPC Unleashed (inline var...
by
creaothceann
[April 15, 2026, 11:38:14 am]
I hope FreePascal can sup...
by
Zvoni
[April 15, 2026, 10:22:18 am]
Remote desktop software i...
by
creaothceann
[April 15, 2026, 10:09:49 am]
Naming daemons during ins...
by
LeP
[April 15, 2026, 08:46:39 am]
[SOLVED] Can't pass strin...
by
mas steindorff
[April 14, 2026, 08:51:15 pm]
Fast Canvas Library V1.05...
by
Gigatron
[April 14, 2026, 08:39:38 pm]
Translation of Lazarus ID...
by
pmralbuquerque
[April 14, 2026, 07:47:01 pm]
Necromancer's Dos Navigat...
by
Thaddy
[April 14, 2026, 06:26:29 pm]
Trying to plot points, bu...
by
garymq
[April 14, 2026, 02:01:36 pm]
SPC Player Library
by
creaothceann
[April 14, 2026, 01:59:25 pm]
Fractal of Mandelbrot
by
Boleeman
[April 14, 2026, 10:20:21 am]
My project to build and p...
by
krolikbest
[April 14, 2026, 09:07:12 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: Quebra de linha no CheckBox (Read 8291 times)
rostfile
Newbie
Posts: 2
Quebra de linha no CheckBox
«
on:
March 02, 2018, 09:15:32 pm »
Alguém sabe como colocar o caption do checkbox em mais de uma linha?
Logged
GAN
Sr. Member
Posts: 389
Re: Quebra de linha no CheckBox
«
Reply #1 on:
March 02, 2018, 10:04:59 pm »
Code: Pascal
[Select]
[+]
[-]
CheckBox1
.
Caption
:
=
'line1'
+
#13
#10
+
'line2'
+
#13
#10
+
'line3'
;
Logged
Linux Mint Mate (allways)
Zeos 7̶.̶2̶.̶6̶ 7.1.3a-stable - Sqlite - LazReport
rostfile
Newbie
Posts: 2
Re: Quebra de linha no CheckBox
«
Reply #2 on:
March 03, 2018, 01:58:51 pm »
Quote from: GAN on March 02, 2018, 10:04:59 pm
Code: Pascal
[Select]
[+]
[-]
CheckBox1
.
Caption
:
=
'line1'
+
#13
#10
+
'line2'
+
#13
#10
+
'line3'
;
Agradeço a atenção mas não deu certo.
Em tempo de execução o texto fica incompleto em única linha.
Logged
GAN
Sr. Member
Posts: 389
Re: Quebra de linha no CheckBox
«
Reply #3 on:
March 04, 2018, 12:23:44 am »
Tente a partir do Inspetor de objeto, Chekbox1----> Caption... e digite linea1 [Enter] Linea2 [Enter] linea3.
Em tempo de execução:
Logged
Linux Mint Mate (allways)
Zeos 7̶.̶2̶.̶6̶ 7.1.3a-stable - Sqlite - LazReport
davilajunior
Newbie
Posts: 3
Re: Quebra de linha no CheckBox
«
Reply #4 on:
October 04, 2018, 03:07:23 pm »
Prezados, testei no Lazarus 1.8.4 Windows, e nenhuma das dicas funciona, procurei propriedades que pudessem mudar este comportamento e também não achei, acho que é a algo a ser resolvido na próxima versão.
Logged
Thaddy
Hero Member
Posts: 18960
Glad to be alive.
Re: Quebra de linha no CheckBox
«
Reply #5 on:
October 04, 2018, 03:24:47 pm »
Quote from: GAN on March 02, 2018, 10:04:59 pm
Code: Pascal
[Select]
[+]
[-]
CheckBox1
.
Caption
:
=
'line1'
+
#13
#10
+
'line2'
+
#13
#10
+
'line3'
;
Code: Pascal
[Select]
[+]
[-]
// cross platform
CheckBox1
.
Caption
:
=
'line1'
+
LineBreak
+
'line2'
+
LineBreak
+
'line3'
;
Logged
Recovered from removal of tumor in tongue following tongue reconstruction with a part from my leg.
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Other Languages
»
Portuguese
»
Quebra de linha no CheckBox
TinyPortal
© 2005-2018