PayWork::GetFieldName (Interface: PayWork)
 
Gets the field name.
 
BSTR GetFieldName (
    enum ePayWorkFld eFieldID
)
 
Parameters
eFieldID
[in] Identifier of the field, e.g. pwkfSysNum (C++) or ePayWorkFld.pwkfSysNum (C# / VB.NET).
 
Remark: In VBS, this field identifier enumerations cannot be used! You should use GetFieldID to get a valid field identifier.
 
Return value
A BSTR containing the technical name of the requested field.
 
See Also
CreatePayWork
GetFieldID
 
Samples
 
C++
 
// Retrieve the technical name of the 'system number'-field.
CString strFieldName = (LPCSTR)pPayWork->GetFieldName (pwkfSysNum);

C#
 
// Retrieve the technical name of the 'system number'-field.
string strFieldName = oPayWork.GetFieldName (ePayWorkFld.pwkfSysNum);

VBS
 
' Retrieve the technical name of the 'system number'-field.
Dim strFieldName
strFieldName = oPayWork.GetFieldName(oPayWork.GetFieldID("SysNum"))

VB.NET
 
' Retrieve the technical name of the 'system number'-field.
Dim strFieldName As String
strFieldName = oPayWork.GetFieldName(ePayWorkFld.pwkfSysNum)