Interface IImageEventHandler
-
- All Known Implementing Classes:
ImageEventAdapter
public interface IImageEventHandler
Script event handler interface for an image
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onCreate(IImageInstance image, IReportContext reportContext)
Handle the onCreate eventvoid
onPageBreak(IImageInstance image, IReportContext reportContext)
Handle the onPageBreak eventvoid
onPrepare(IImage imageHandle, IReportContext reportContext)
Handle the onPrepare eventvoid
onRender(IImageInstance image, IReportContext reportContext)
Handle the onRender event
-
-
-
Method Detail
-
onPrepare
void onPrepare(IImage imageHandle, IReportContext reportContext) throws ScriptException
Handle the onPrepare event- Throws:
ScriptException
-
onCreate
void onCreate(IImageInstance image, IReportContext reportContext) throws ScriptException
Handle the onCreate event- Throws:
ScriptException
-
onRender
void onRender(IImageInstance image, IReportContext reportContext) throws ScriptException
Handle the onRender event- Throws:
ScriptException
-
onPageBreak
void onPageBreak(IImageInstance image, IReportContext reportContext) throws ScriptException
Handle the onPageBreak event- Throws:
ScriptException
-
-