TemplateLinkedPosition constructor

Contents
[ ]

init

Initializes a new instance of the TemplateLinkedPosition class.

def __init__(self, linked_field_name, search_area, edges):
    ...
Parameter Type Description
linked_field_name System.String The name of the linked field.
search_area groupdocs.parser.data.Size The size of the area where a field is searched.
edges groupdocs.parser.templates.TemplateLinkedPositionEdges The edges of the linked field where a field is searched.

init

Initializes a new instance of the TemplateLinkedPosition class with UPPER CASE linked field name.

def __init__(self, linked_field_name, search_area, edges, auto_scale):
    ...
Parameter Type Description
linked_field_name System.String The name of the linked field.
search_area groupdocs.parser.data.Size The size of the area where a field is searched.
edges groupdocs.parser.templates.TemplateLinkedPositionEdges The edges of the linked field where a field is searched.
auto_scale bool The value that indicates whether search_area is scaled by the linked field size.

init

Initializes a new instance of the TemplateLinkedPosition class.

def __init__(self, linked_field_name, search_area, edges, auto_scale, use_upper_case_name):
    ...
Parameter Type Description
linked_field_name System.String The name of the linked field.
search_area groupdocs.parser.data.Size The size of the area where a field is searched.
edges groupdocs.parser.templates.TemplateLinkedPositionEdges The edges of the linked field where a field is searched.
auto_scale bool The value that indicates whether search_area is scaled by the linked field size.
use_upper_case_name bool The value that indicates whether a name is converted to UPPER CASE.

See Also