Entry::IsFieldPublic (Interface: Entry)
 
Is the field public?
 
VARIANT_BOOL IsFieldPublic (
    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->IsFieldPublic (entfSysNum))
    // This field can be updated.

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

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

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