ActiveReports.Viewer3 Request technical support
OutputHtmlData Method
See Also 


info
Called by the HtmlExport class to output data. The implementation of OutputHtmlData should use the data passed in the info argument and store it as the implementor requires.

Syntax

Visual Basic (Declaration) 
Overridable Function OutputHtmlData( _
   ByVal info As HtmlOutputInfoArgs _
) As String
Visual Basic (Usage)Copy Code
Dim instance As IOutputHtml
Dim info As HtmlOutputInfoArgs
Dim value As String
 
value = instance.OutputHtmlData(info)
C# 
virtual string OutputHtmlData( 
   HtmlOutputInfoArgs info
)

Parameters

info

Remarks

The implementation of OutputHtmlData should use the data passed in the info argument and store it as the implementor requires. The return value should be a "file name" that the calling HtmlExport class can use to place links in the main HTML page to the data. For example, as an HTML page is being created and an image is encountered that will be output as an HTML img. the HtmlExport object will call this method to provide the data to the implementor and the return value from OutputHtmlData (i.e. the filename) will be used as the src attribute's value. 

When the HTML page is ready, OutputHtmlData will be called again to pass the actual HTML page's data. In this case the filename returned by the OutputHtmlData implementation will not be used."

See Also