- Mastering Delphi Programming:A Complete Reference Guide
- Primo? Gabrijel?i?
- 150字
- 2021-06-24 12:33:27
Conventions used
There are a number of text conventions used throughout this book.
CodeInText: Indicates code words in the text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "A string parameter value is present in a string list."
A block of code is set as follows:
function IsPresentInList(strings: TStrings; const value: string): Boolean;
var
i: Integer;
begin
Result := False;
for i := 0 to strings.Count - 1 do
if SameText(strings[i], value) then
Exit(True);
end;
Bold: Indicates a new term, an important word, or words that you see onscreen. For example, words in menus or dialog boxes appear in the text like this. Here is an example: "Go to Options | Options, then select General | Search directory."
Warnings or important notes appear like this.
Tips and tricks appear like this.
推薦閱讀
- 觸摸屏實用技術與工程應用
- 新媒體跨界交互設計
- 基于Proteus和Keil的C51程序設計項目教程(第2版):理論、仿真、實踐相融合
- INSTANT Wijmo Widgets How-to
- Unity 5.x Game Development Blueprints
- 深入淺出SSD:固態存儲核心技術、原理與實戰(第2版)
- 從零開始學51單片機C語言
- Learning Game Physics with Bullet Physics and OpenGL
- Mastering Adobe Photoshop Elements
- Visual Media Processing Using Matlab Beginner's Guide
- STM32嵌入式技術應用開發全案例實踐
- SiFive 經典RISC-V FE310微控制器原理與實踐
- 深入理解序列化與反序列化
- Python Machine Learning Blueprints
- FL Studio Cookbook