Table of Contents

Class FieldType

Namespace
ScanbotSDK.MAUI.Common
Assembly
ScanbotSDK.Shared.dll

Generic Document Type.

public class FieldType
Inheritance
FieldType
Inherited Members

Properties

CommonType

Commonly occurring fields that have the same semantic meaning in different document types will often have a set common type.

public required CommonFieldType? CommonType { get; init; }

Property Value

CommonFieldType?

FullName

Unique global field type name prefixed with the document types of all containing documents.

public required string FullName { get; init; }

Property Value

string

ListIndex

A document can contain multiple fields of the same name, the property serves for storing natural order of such fields, null if multiple entries aren't allowed for this field.

public int? ListIndex { get; init; }

Property Value

int?

Name

Local field type name scoped to the containing document type.

public required string Name { get; init; }

Property Value

string

NormalizedName

Normalized global field type name. Fields in document types derived from the same base document type in the schema will have the same normalized name.

public required string NormalizedName { get; init; }

Property Value

string