FormSource
With FormSource you can add content to a Form object, which will be inserted in the PDF document. This article explains the following topics:
The FormSource is part of Telerik Document Processing, a professional grade .NET library for creating and manipulating PDF, Word, XLSX and HTML files. To try it out sign up for a free 30-day trial.
- Creating a FormSource
- FormSource Properties
- Adding Content to a FormSource Object
- Inserting a FormSource into a Document
The FormSource content can also be an SVG image or a Barcode.
Creating a FormSource
The FormSource class exposes a default constructor which you can use to create an empty instance.
Example 1: Create FormSource
The properties exposed by the FormSource class are as follows: |Property|Description| |----|----| |Size|Allows getting or setting the size of the form.| |Content|Gets the contents of the form.|
Adding Content to a FormSource Object
The FormSource class inherits from the IContentRootElement interface. This inheritance allows you to use the FixedContentEditor class for filling the content of the form.
Example 2 shows you how you can insert a content into a FormSource object using FixedContentEditor.
Example 2: Add content to a FormSource
Inserting a FormSource into a Document
After generating the FormSource object and filling it with content, you should insert it in the document. The API provides you with convenient approaches that might be useful to easily insert the form in different scenarios.
You can reuse a single FormSource object among the document by setting it to different Form instances.
-
In addition to the ability to fill a form source, the FixedContentEditor allows you to add this form to a container.
Example 3: Add a FormSource to a document using FixedContentEditor
There are several overloads of the DrawForm() method that enables you to specify the size of the form. A FormSource object can be inserted using the methods of RadFixedDocumentEditor. The InsertFormInline() method is described in the RadFixedDocumentEditor topic.
When editing a Block, you can insert a FormSource object directly into it. For more information, check this topic.