ArtLoc::IsFieldVirtual (Interface: ArtLoc)
 
Is the field virtual?
 
VARIANT_BOOL IsFieldVirtual (
    enum eArtLocFld eFieldID
)
 
Parameters
eFieldID
[in] Identifier of the field, e.g. alofSysNum (C++) or eArtLocFld.alofSysNum (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
CreateArtLoc
 
Samples
 
C++
 
if (pArtLoc->IsFieldVirtual (alofSysNum))
    // This field can not be updated.

C#
 
if (oArtLoc.IsFieldVirtual (eArtLocFld.alofSysNum))
    // This field can not be updated.

VBS
 
If oArtLoc.IsFieldVirtual(oArtLoc.GetFieldID("SysNum")) Then
    ' This field can not be updated.
End If

VB.NET
 
If oArtLoc.IsFieldVirtual(eArtLocFld.alofSysNum) Then
    ' This field can not be updated.
End If