Custm::GetFieldName (Interface: Custm)
 
Gets the field name.
 
BSTR GetFieldName (
    enum eCustmFld eFieldID
)
 
Parameters
eFieldID
[in] Identifier of the field, e.g. cusfSysNum (C++) or eCustmFld.cusfSysNum (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
CreateCustm
GetFieldID
 
Samples
 
C++
 
// Retrieve the technical name of the 'system number'-field.
CString strFieldName = (LPCSTR)pCustm->GetFieldName (cusfSysNum);

C#
 
// Retrieve the technical name of the 'system number'-field.
string strFieldName = oCustm.GetFieldName (eCustmFld.cusfSysNum);

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

VB.NET
 
' Retrieve the technical name of the 'system number'-field.
Dim strFieldName As String
strFieldName = oCustm.GetFieldName(eCustmFld.cusfSysNum)