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
Is changing name supposed...
by
wp
[
Today
at 11:00:07 am]
Feature announcement: Fun...
by
Peter H
[
Today
at 10:55:02 am]
Possible work-around for ...
by
Thaddy
[
Today
at 10:13:31 am]
How to download a file fr...
by
c4p
[
Today
at 09:44:13 am]
list of IT assets
by
xinyiman
[
Today
at 09:36:55 am]
program locks up using se...
by
cdbc
[
Today
at 09:34:10 am]
.cvd ClamAV database comp...
by
Onur2x
[
Today
at 08:14:34 am]
Small DBMS project and Ho...
by
TRon
[
Today
at 07:44:06 am]
Check for updates and upd...
by
KodeZwerg
[
Today
at 07:43:19 am]
python for lazarus
by
Mongkey
[
Today
at 06:23:44 am]
Scope of cross-platform
by
TRon
[
Today
at 06:07:59 am]
Something wrong when i cl...
by
TRon
[
Today
at 05:57:57 am]
Connect Bluetooth Chess b...
by
tearsfornations
[
Today
at 05:48:10 am]
Lazarus for RISC OS
by
TRon
[
Today
at 05:36:04 am]
Are We Dead Yet?
by
dieselnutjob
[
Today
at 12:35:09 am]
How to POST a SOAPAction ...
by
rvk
[
Today
at 12:12:23 am]
is it possible to create ...
by
andyf97
[
Today
at 12:04:07 am]
What to change ModePortA,...
by
ccrause
[June 08, 2023, 10:17:09 pm]
Access violation with use...
by
Martin_fr
[June 08, 2023, 08:34:18 pm]
Suggestion on the lines o...
by
Skvoznjak
[June 08, 2023, 06:43:43 pm]
Best way to include lots ...
by
PascalDragon
[June 08, 2023, 06:14:51 pm]
DBEdit - display setting ...
by
rvk
[June 08, 2023, 05:44:34 pm]
[SOLVED] Help for downloa...
by
magleft
[June 08, 2023, 05:02:48 pm]
Testers needed: FpDebug a...
by
Martin_fr
[June 08, 2023, 03:27:07 pm]
Making a little chart app
by
circular
[June 08, 2023, 01:23:15 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: Richmemo add text with font (Read 571 times)
eldonfsr
Sr. Member
Posts: 383
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: 683
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: 2763
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: 383
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