Class is used with the RenderToFilter(ExportFilter) method to render reports into RTF (rich text format) streams or files.

Namespace:  C1.C1Report
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
public class RtfLabelFilter : RtfFilter
Visual Basic
Public Class RtfLabelFilter _
	Inherits RtfFilter

Remarks

This filter is similar to the plain RtfFilter, except if generates RTF fields with absolute positioning. The resulting files are more accurate than the ones created with the plain RTF filter, but they are harder to edit and can only be opened in Microsoft Word (WordPad and other simple editors do not support RTF absolute positioning).

Creating an RtfLabelFilter and using it in a call to the RenderToFilter(ExportFilter) method is similar to using the RenderToFile(String, FileFormatEnum) or RenderToStream(Stream, FileFormatEnum) methods, but offers some extra flexibility because you can set properties on the RtfLabelFilter before calling RenderToFilter.

Inheritance Hierarchy

System..::..Object
  C1.C1Report..::..ExportFilter
    C1.C1Report..::..RtfFilter
      C1.C1Report..::..RtfLabelFilter

See Also