📄 printable.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 + -