Skip to main content

MetaDataFieldValue

The MetaDataFieldValue class represents a metadata field value associated with a specific document management object, including its project, form, and field identifiers.

This class encapsulates metadata field information and its value for a document management object. It maintains the relationships between:

  • The document management object (via ObjectId)
  • The project context (via ProjectId)
  • The form definition (via FormId)
  • The specific field (via FieldName)
  • The field's value and properties (via FieldValue)

Properties

NameDescription
FieldValueGets the value and associated properties of the metadata field.
ProjectIdGets the identifier of the project associated with this metadata field value.
FieldNameGets the name of the metadata field.
ObjectIdGets the unique identifier of the document management object associated with this metadata field value.
FormIdGets the identifier of the form associated with this metadata field value.

Constructors

NameDescription
MetaDataFieldValue(objectId, projectId, formId, fieldName, fieldValue)Initializes a new instance of the MetaDataFieldValue class with the specified parameters.