- Delphi Cookbook(Second Edition)
- Daniele Teti
- 211字
- 2021-08-20 10:33:59
Conventions
In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "Style manipulation at runtime is done using the class methods of the TStyleManager
class."
A block of code is set as follows:
procedure TMainForm.StylesListRefresh; var stylename: string; begin ListBox1.Clear; // retrieve all the styles linked in the executable for stylename in TStyleManager.StyleNames do begin ListBox1.Items.Add(stylename); end; end;
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
TStyleManager.TrySetStyle('Iceberg Classico');
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end
Any command-line input or output is written as follows:
# cp /usr/src/asterisk-addons/configs/cdr_mysql.conf.sample /etc/asterisk/cdr_mysql.conf
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "Add all the columns to TDBGrid by right-clicking and selecting Columns Editor".
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
- scikit-learn Cookbook
- ExtGWT Rich Internet Application Cookbook
- Kubernetes實(shí)戰(zhàn)
- Learning Spring 5.0
- Mastering SVG
- Flutter跨平臺(tái)開(kāi)發(fā)入門與實(shí)戰(zhàn)
- 微服務(wù)從小白到專家:Spring Cloud和Kubernetes實(shí)戰(zhàn)
- Android玩家必備
- Learning Hadoop 2
- Data Science Algorithms in a Week
- Hands-On Robotics Programming with C++
- Neo4j 3.x入門經(jīng)典
- Java 11 and 12:New Features
- 前端架構(gòu)設(shè)計(jì)
- 自己動(dòng)手構(gòu)建編程語(yǔ)言:如何設(shè)計(jì)編譯器、解釋器和DSL