⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 printable.pas

📁 《Delphi技术手册源码》原书佩戴的光盘
💻 PAS
字号:
unit Printable;

interface

// Stuff to help print large, complex data structures.
// Each class that can be printed implements the IPrintable interface.
// Classes that might be stored in cyclic data structures should also
// implement ICollectible.
//
// The TInfoStream object keeps track of which objects have been printed
// and which have not. It avoid printing objects that have already been
// printed. It does this by keeping a hashed set of objects after printing
// each one. Thus, the objects must implement the ICollectible interface.
//
// The stream also maintains the notion of a current indentation. Use the
// indentation to help show nested data structures.

// Copyright 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -