如题,请问语法该如何写? PDFCreator := CreateOleObject('PDFCreator.clsPDFCreator');
 PDFCreator.cStart('/NoProcessingAtStartup');----------------以上都没有问题-------------------------  PDFCreator本身包括Events 
  Public Event eError()
  Public Event eReady()
 
 调用的时候如果写成:
 PDFCreator.eReady := PDFCreatoreReady;//想在自定义的过程PDFCreatoreReady里写自己的代码
 程序报错请问该如何书写?