fyiReporting.RDL.Report.RunRender C# (CSharp) Method

RunRender() public method

Renders the report using the requested presentation type.
public RunRender ( IStreamGen sg, OutputPresentationType type ) : void
sg IStreamGen IStreamGen for generating result stream
type OutputPresentationType Presentation type: HTML, XML, PDF, or ASP compatible HTML
return void
        public void RunRender(IStreamGen sg, OutputPresentationType type)
        {
            RunRender(sg, type, "");
        }

Same methods

Report::RunRender ( IStreamGen sg, OutputPresentationType type, string prefix ) : void

Usage Example

        // Run the report passing the parameter values and the output
        public void Run(IDictionary parms, OutputPresentationType type)
        {
            r.RunGetData(parms);

            r.RunRender(_sg, type);

            return;
        }
All Usage Examples Of fyiReporting.RDL.Report::RunRender