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

C#
 
// Retrieve the technical name of the 'system number'-field.
string strFieldName = oCtLnk.GetFieldName (eCtLnkFld.ctlfSysNum);

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

VB.NET
 
' Retrieve the technical name of the 'system number'-field.
Dim strFieldName As String
strFieldName = oCtLnk.GetFieldName(eCtLnkFld.ctlfSysNum)