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