Main Content
getImpl
Class: mlreportgen.report.Reporter
Namespace: mlreportgen.report
Get implementation of reporter
Syntax
impl = getImpl(reporter,report)
Description
returns the DOM object used to implement this reporter in the specified report. The
implementation object can help you debug report generation problems.impl
= getImpl(reporter
,report
)
Input Arguments
Output Arguments
Examples
Get Reporter Implementation
This example shows how to use getImpl
to obtain the DOM object
used to create a TitlePage
reporter. You can use the
getImpl
method with any type of reporter.
import mlreportgen.report.* rpt = Report('My Report'); tp = TitlePage; tp.Title = 'Data Summary'; impl = getImpl(tp,rpt)
Version History
Introduced in R2017b