Entry::IsFieldVirtual (Interface: Entry)
 
Is the field virtual?
 
VARIANT_BOOL IsFieldVirtual (
    enum eEntryFld eFieldID
)
 
Parameters
eFieldID
[in] Identifier of the field, e.g. entfSysNum (C++) or eEntryFld.entfSysNum (C# / VB.NET).
 
Remark: In VBS, this field identifier enumerations cannot be used! You should use GetFieldID to get a valid field identifier.
 
See Also
CreateEntry
 
Samples
 
C++
 
if (pEntry->IsFieldVirtual (entfSysNum))
    // This field can not be updated.

C#
 
if (oEntry.IsFieldVirtual (eEntryFld.entfSysNum))
    // This field can not be updated.

VBS
 
If oEntry.IsFieldVirtual(oEntry.GetFieldID("SysNum")) Then
    ' This field can not be updated.
End If

VB.NET
 
If oEntry.IsFieldVirtual(eEntryFld.entfSysNum) Then
    ' This field can not be updated.
End If