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

C#
 
// Retrieve the technical name of the 'system number'-field.
string strFieldName = oSOfferDet.GetFieldName (eSOfferDetFld.sodfSysNum);

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

VB.NET
 
' Retrieve the technical name of the 'system number'-field.
Dim strFieldName As String
strFieldName = oSOfferDet.GetFieldName(eSOfferDetFld.sodfSysNum)