TemplateFixedPosition Class |
Namespace: GroupDocs.Parser.Templates
The TemplateFixedPosition type exposes the following members.
Name | Description | |
---|---|---|
![]() | TemplateFixedPosition |
Initializes a new instance of the TemplateFixedPosition class.
|
Name | Description | |
---|---|---|
![]() | Rectangle |
Gets the rectangular area that contains the template field.
|
Name | Description | |
---|---|---|
![]() | Equals | (Inherited from Object.) |
![]() | GetHashCode | (Inherited from Object.) |
![]() | GetType | (Inherited from Object.) |
![]() | ToString | (Inherited from Object.) |
This is simplest way to define the field position. It requires to set a rectangular area on the page that bounds the field value. All the text that is contained (even partially) into the rectangular area will be extracted as a value:
// Create a fixed template field with "Address" name which is bounded by a rectangle at the position (35, 160) and with the size (110, 20) TemplateField templateField = new TemplateField( new TemplateFixedPosition(new Rectangle(new Point(35, 160), new Size(110, 20))), "Address");