Interface ILabelEventHandler
-
- All Known Implementing Classes:
LabelEventAdapter
public interface ILabelEventHandler
Script event handler interface for a label
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onCreate(ILabelInstance label, IReportContext reportContext)
Handle the onCreate eventvoid
onPageBreak(ILabelInstance label, IReportContext reportContext)
Handle the onPageBreak eventvoid
onPrepare(ILabel labelHandle, IReportContext reportContext)
Handle the onPrepare eventvoid
onRender(ILabelInstance label, IReportContext reportContext)
Handle the onRender event
-
-
-
Method Detail
-
onPrepare
void onPrepare(ILabel labelHandle, IReportContext reportContext) throws ScriptException
Handle the onPrepare event- Throws:
ScriptException
-
onCreate
void onCreate(ILabelInstance label, IReportContext reportContext) throws ScriptException
Handle the onCreate event- Throws:
ScriptException
-
onRender
void onRender(ILabelInstance label, IReportContext reportContext) throws ScriptException
Handle the onRender event- Throws:
ScriptException
-
onPageBreak
void onPageBreak(ILabelInstance label, IReportContext reportContext) throws ScriptException
Handle the onPageBreak event- Throws:
ScriptException
-
-