Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Packages and Libraries
»
RichMemo
»
Richmemo add text with font
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
IRC channel
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Lazarus 3.9.9 Variable Wa...
by
Martin_fr
[
Today
at 03:19:49 pm]
Battery Operations
by
msintle
[
Today
at 02:56:45 pm]
How to convert Real to Bi...
by
MathMan
[
Today
at 02:34:55 pm]
Anyone interested in test...
by
Josh
[
Today
at 02:09:03 pm]
Linux snapshot zip files ...
by
Zaher
[
Today
at 01:22:21 pm]
New version of BGRABitmap
by
lainz
[
Today
at 01:15:01 pm]
[SOLVED] TLabeledEdit.Edi...
by
jipété
[
Today
at 01:09:42 pm]
Automatize build system
by
Чебурашка
[
Today
at 12:20:44 pm]
How to stay in the invali...
by
wp
[
Today
at 11:50:39 am]
lazarus controlling compi...
by
Bart
[
Today
at 11:33:03 am]
SVG thumbnails
by
domasz
[
Today
at 11:18:31 am]
Unique Instance Terminate...
by
Thaddy
[
Today
at 10:34:09 am]
i can't inatall Dam dialo...
by
TRon
[
Today
at 10:31:44 am]
CORDIC algorithms
by
Thaddy
[
Today
at 10:20:40 am]
Autentication Oracle
by
Thaddy
[
Today
at 09:16:19 am]
How to "create" a TFont a...
by
kwyan
[
Today
at 04:29:00 am]
SOLVED How to get PRAGMA ...
by
JanRoza
[
Today
at 01:36:33 am]
Component writing adding ...
by
andrew Bubble
[
Today
at 12:01:02 am]
Compare strange character...
by
nikel
[December 05, 2023, 11:33:21 pm]
Lazarus Release Candidate...
by
dbannon
[December 05, 2023, 11:18:03 pm]
Question about glibc bug ...
by
PascalDragon
[December 05, 2023, 10:22:15 pm]
Virtual Method
by
PascalDragon
[December 05, 2023, 08:51:54 pm]
Watchlist, order of the w...
by
Martin_fr
[December 05, 2023, 08:13:55 pm]
How to 'Hello world' on l...
by
FramX
[December 05, 2023, 07:39:07 pm]
Difference between TSpeed...
by
Hansvb
[December 05, 2023, 07:29:23 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: Richmemo add text with font (Read 1243 times)
eldonfsr
Sr. Member
Posts: 433
Richmemo add text with font
«
on:
September 29, 2022, 08:44:23 pm »
Hi i have a question how i can add text or line richmemo with font or textstyle
Logged
paweld
Hero Member
Posts: 851
Re: Richmemo add text with font
«
Reply #1 on:
September 29, 2022, 09:19:33 pm »
Code: Pascal
[Select]
[+]
[-]
uses
LazUTF8
;
procedure
TForm1
.
Button1Click
(
Sender
:
TObject
)
;
const
colorarr
:
array
[
0
..
4
]
of
TColor
=
(
clBlack
,
clRed
,
clGreen
,
clGray
,
clBlue
)
;
fontstylearr
:
array
[
0
..
3
]
of
TFontStyle
=
(
fsBold
,
fsItalic
,
fsUnderLine
,
fsStrikeOut
)
;
fontsizearr
:
array
[
0
..
5
]
of
Integer
=
(
10
,
14
,
16
,
24
,
32
,
48
)
;
fontnamearr
:
array
[
0
..
2
]
of
String
=
(
'Arial'
,
'Courier'
,
'Times New Roman'
)
;
var
m
,
l
:
Integer
;
s
:
String
;
begin
s
:
=
'zażółć gęślą jaźń'
;
s
:
=
UTF8Copy
(
s
,
1
,
Random
(
UTF8Length
(
s
)
)
+
1
)
;
m
:
=
UTF8Length
(
RichMemo1
.
Lines
.
Text
)
;
l
:
=
UTF8Length
(
s
)
;
RichMemo1
.
Lines
.
Add
(
s
)
;
//Add line
RichMemo1
.
SetRangeParams
(
m
,
l
,
[
tmm_Color
,
tmm_Styles
,
tmm_Name
,
tmm_Size
]
,
//tmm_Color - set font color, tmm_Styles - set font style, tmm_Size - set font size, tmm_Name - set font name
fontnamearr
[
l
mod
3
]
,
fontsizearr
[
l
mod
6
]
,
colorarr
[
l
mod
5
]
,
[
fontstylearr
[
l
mod
4
]
]
,
[
]
)
;
end
;
Logged
Best regards / Pozdrawiam
paweld
skalogryz
Global Moderator
Hero Member
Posts: 2770
Re: Richmemo add text with font
«
Reply #2 on:
September 29, 2022, 09:27:55 pm »
https://wiki.freepascal.org/RichMemo/FAQ#Add_text_with_font
Logged
eldonfsr
Sr. Member
Posts: 433
Re: Richmemo add text with font
«
Reply #3 on:
September 29, 2022, 10:51:32 pm »
Ok Thanks....
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Packages and Libraries
»
RichMemo
»
Richmemo add text with font
TinyPortal
© 2005-2018