FieldData constructor

Contents
[ ]

init

Initializes a new instance of the FieldData class with UPPER CASE name.

def __init__(self, name, page_area):
    ...
Parameter Type Description
name System.String The name of the field.
page_area groupdocs.parser.data.PageArea The value of the field.

init

Initializes a new instance of the FieldData class with UPPER CASE name.

def __init__(self, name, page_area, linked_data_field):
    ...
Parameter Type Description
name System.String The name of the field.
page_area groupdocs.parser.data.PageArea The value of the field.
linked_data_field groupdocs.parser.data.FieldData The field which is linked to the field.

init

Initializes a new instance of the FieldData class.

def __init__(self, name, page_area, use_upper_case_name):
    ...
Parameter Type Description
name System.String The name of the field.
page_area groupdocs.parser.data.PageArea The value of the field.
use_upper_case_name bool The value that indicates whether a name is converted to UPPER CASE.

init

Initializes a new instance of the FieldData class.

def __init__(self, name, page_area, linked_data_field, use_upper_case_name):
    ...
Parameter Type Description
name System.String The name of the field.
page_area groupdocs.parser.data.PageArea The value of the field.
linked_data_field groupdocs.parser.data.FieldData The field which is linked to the field.
use_upper_case_name bool The value that indicates whether a name is converted to UPPER CASE.

See Also