|
Is the field virtual? |
|
|
VARIANT_BOOL IsFieldVirtual ( enum eCustmFld eFieldID ) |
|
|
Parameters | eFieldID | [in] Identifier of the field, e.g. cusfSysNum (C++) or eCustmFld.cusfSysNum (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 (pCustm->IsFieldVirtual (cusfSysNum))
// This field can not be updated.
|
|
|
C# |
|
if (oCustm.IsFieldVirtual (eCustmFld.cusfSysNum))
// This field can not be updated.
|
|
|
VBS |
|
If oCustm.IsFieldVirtual(oCustm.GetFieldID("SysNum")) Then
' This field can not be updated.
End If
|
|
|
VB.NET |
|
If oCustm.IsFieldVirtual(eCustmFld.cusfSysNum) Then
' This field can not be updated.
End If
|
|