|
Is the field public? |
|
|
VARIANT_BOOL IsFieldPublic ( enum eBalanFld eFieldID ) |
|
|
Parameters | eFieldID | [in] Identifier of the field, e.g. balfSysNum (C++) or eBalanFld.balfSysNum (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 |
|
|
|
Samples |
|
|
C++ |
|
if (pBalan->IsFieldPublic (balfSysNum))
// This field can be updated.
|
|
|
C# |
|
if (oBalan.IsFieldPublic (eBalanFld.balfSysNum))
// This field can be updated.
|
|
|
VBS |
|
If oBalan.IsFieldPublic(oBalan.GetFieldID("SysNum")) Then
' This field can be updated.
End If
|
|
|
VB.NET |
|
If oBalan.IsFieldPublic(eBalanFld.balfSysNum) Then
' This field can be updated.
End If
|
|