Field Property of the BusinessUnitRecord Object
Specifies the value of the given field in the business unit record. Before you start to use the database you need to fill the Id, Name, and CountryCode fields for each business unit (RFT_Id, RFT_Name, RFT_CountryCode constants).
Syntax
Visual Basic .NET
Property Field (FieldType As RecordFieldTypeEnum) As String
C++
HRESULT get_Field( RecordFieldTypeEnum FieldType, BSTR* Result ); HRESULT put_Field( RecordFieldTypeEnum FieldType, BSTR Value );
Parameters
- FieldType
- [in] This parameter contains the RecordFieldTypeEnum constant corresponding to the field which should be filled in or returned. The following values are supported: RFT_City, RFT_CountryCode, RFT_Id, RFT_Name, RFT_Street, RFT_VatId, RFT_Zip.
- Result
- [out, retval] A pointer to a string variable that receives the value of the field. Must not be NULL.
- Value
- [in] A string variable which contains the new value of the field.
Return values
This method has no specific return values. It returns the standard return values of ABBYY FlexiCapture SDK functions.
See also
8/15/2023 1:19:30 PM