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
Name | Description |
---|---|
FieldValue | Gets the value and associated properties of the metadata field. |
ProjectId | Gets the identifier of the project associated with this metadata field value. |
FieldName | Gets the name of the metadata field. |
ObjectId | Gets the unique identifier of the document management object associated with this metadata field value. |
FormId | Gets the identifier of the form associated with this metadata field value. |
Constructors
Name | Description |
---|---|
MetaDataFieldValue(objectId, projectId, formId, fieldName, fieldValue) | Initializes a new instance of the MetaDataFieldValue class with the specified parameters. |