ComponentOne Reports for WPF
C1.C1Report Namespace / HtmlTableFilter Class
Members

In This Topic
    HtmlTableFilter Class
    In This Topic
    Class is used with the C1Report.RenderToFilter method to render reports into table-based HTML streams or files.
    Object Model
    HtmlTableFilter Class
    Syntax
    'Declaration
     
    Public Class HtmlTableFilter 
       Inherits HtmlFilter
    public class HtmlTableFilter : HtmlFilter 
    Remarks

    This filter is similar to the plain HtmlFilter, except if generates reports based on TABLE tags as opposed to absolutely-positioned DIV tags. The resulting files are usually less accurate than the ones created with the plain DIV-based HtmlFilter, but they have three significant advantages:

    1) TABLE-based reports are easier to edit in regular HTML editors. You can easily insert rows for example.

    2) TABLE-based reports support clipboard operations better. For example, you can copy report sections in the browser and paste them into Excel.

    3) TABLE-based reports support vertical alignment within fields.

    Inheritance Hierarchy

    System.Object
       C1.C1Report.ExportFilter
          C1.C1Report.HtmlFilter
             C1.C1Report.HtmlTableFilter

    See Also