Book::IsFieldPublic (Interface: Book)
 
Is the field public?
 
VARIANT_BOOL IsFieldPublic (
    enum eBookFld eFieldID
)
 
Parameters
eFieldID
[in] Identifier of the field, e.g. boofSysNum (C++) or eBookFld.boofSysNum (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
CreateBook
 
Samples
 
C++
 
if (pBook->IsFieldPublic (boofSysNum))
    // This field can be updated.

C#
 
if (oBook.IsFieldPublic (eBookFld.boofSysNum))
    // This field can be updated.

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

VB.NET
 
If oBook.IsFieldPublic(eBookFld.boofSysNum) Then
    ' This field can be updated.
End If