StockDoc::GetFieldID (Interface: StockDoc)
 
Gets the field identifier.
 
enum eStockDocFld GetFieldID (
    BSTR bsFieldName
)
 
Parameters
bsFieldName
[in] A string containing the name of the field of which you want to know the identifier.
 
Return value
Identifier of the field, e.g. stdfSysNum (C++) or eStockDocFld.stdfSysNum (C# / VB.NET).
 
Remarks
If an identifier is given for a field that does not exist, this method will return -1.
 
See Also
CreateStockDoc
GetFieldName
 
Samples
 
C++
 
// Retrieve the identifier of the 'system number'-field.
eStockDocFld eFieldId = pStockDoc->GetFieldID ("SysNum");

C#
 
// Retrieve the identifier of the 'system number'-field.
eStockDocFld eFieldId = oStockDoc.GetFieldID ("SysNum");

VBS
 
' Retrieve the identifier of the 'system number'-field.
Dim eFieldId
eFieldId = oStockDoc.GetFieldID("SysNum")

VB.NET
 
' Retrieve the identifier of the 'system number'-field.
Dim eFieldId As eStockDocFld
eFieldId = oStockDoc.GetFieldID("SysNum")