The C1ReportDesigner is a Windows Forms control that provides the ability to design and edit report definitions that can be used with the C1.C1Report, C1WebReport, and VSReport controls.

Namespace:  C1.Win.C1ReportDesigner
Assembly:  C1.Win.C1ReportDesigner.2 (in C1.Win.C1ReportDesigner.2.dll)

Syntax

C#
[LicenseProviderAttribute(typeof(LicenseProvider))]
[DesignerAttribute(typeof(ReportDesignerDesigner))]
[ToolboxBitmapAttribute(typeof(C1ReportDesigner), "C1ReportDesigner.png")]
public class C1ReportDesigner : ScrollableControl
Visual Basic
<LicenseProviderAttribute(GetType(LicenseProvider))> _
<DesignerAttribute(GetType(ReportDesignerDesigner))> _
<ToolboxBitmapAttribute(GetType(C1ReportDesigner), "C1ReportDesigner.png")> _
Public Class C1ReportDesigner _
	Inherits ScrollableControl

Remarks

To use this control, drag it onto a new or existing form, add a C1.C1Report component that will contain the report you want to edit, and set the Report property in the designer control. Then add all the other UI elements your application needs.

Inheritance Hierarchy

System..::..Object
  System..::..MarshalByRefObject
    System.ComponentModel..::..Component
      System.Windows.Forms..::..Control
        ScrollableControl
          C1.Win.C1ReportDesigner..::..C1ReportDesigner

See Also