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

📄 customimage.pas

📁 用于CD/DVD烧录的Delphi源码,包括source和demo
💻 PAS
字号:
{-----------------------------------------------------------------------------
 Unit Name: CustomImage
 Author:    Paul Fisher / Andrew Semack
 Purpose:   Parent of all CD Image types
 History:
-----------------------------------------------------------------------------}

unit CustomImage;

interface

uses Classes, Windows;

type
  TImageType = (ITAudioImage, IT9660Image, ITDVDVideoImage, ITISOFileImage, ITBinCueImage);

type
  TCustomImage = class
  private
    FImageType: TImageType;
  published
    property ImageType: TImageType read FImageType write FImageType;
  end;

implementation

end.

⌨️ 快捷键说明

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