ActiveReports 6 Online Help
Add Annotations

You or your users can add notes, special instructions, even images, directly to the ActiveReport, making team collaboration, feedback, and support an easier task. Annotations are added in two ways: via the viewer's toolbar, or in code.

Annotations added via the viewer's toolbar are temporary. They reside on the Page object in which they are placed, and are destroyed when the report closes. In order to save annotations you must save the report data and accompanying annotations to RDF format.

Each annotation type allows you to change the colors, transparency, border, font, and alignment, plus other properties specific to the type of annotation. Available annotations include:

To add annotations using the viewer

  1. Load a report into the viewer and click the Annotations button on the toolbar.
  2. Click the annotation you want to add and drag it onto the report.

  3. Drag the corners to resize the annotation as needed, or drag the center to relocate it.

To change the properties of an annotation in the viewer

  1. Right-click the annotation and select Properties.

  2. In the Annotation Properties window that appears, add text, change the alignment, set colors, and use any other special properties to make the annotation appear the way you want it.

 

To save annotations

You can save annotations along with report data into an RDF file. The following example shows how to add a Save Annotated Report button to the viewer.

  1. From the Visual Studio toolbox, drag a Button control onto the viewer.
  2. Set the Text property of the button to Save Annotated Report.
  3. Double-click the button. This creates an event-handling method for the button Click event.
  4. Add code to the click handler to save the document to an RDF file.
    Tip: See Save and Load Report Files (RDF) for more information on loading the saved RDF file into the viewer.

To write the code in Visual Basic.NET

To write the code in C#

To add annotations in code

The following example shows how to add annotations at run time and save the report data and annotations to an RDF file.

  1. Double-click the title bar of the form in which you host the viewer. This creates an event-handling method for the form Load event.
  2. Add code to the handler to run the report, add annotations, display the report in the viewer, and save it into an RDF file.

To write the code in Visual Basic.NET

To write the code in C#

See Also

Related Sections