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

C#
 
if (oAnaProp.IsFieldVirtual (eAnaPropFld.anhfSysNum))
    // This field can not be updated.

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

VB.NET
 
If oAnaProp.IsFieldVirtual(eAnaPropFld.anhfSysNum) Then
    ' This field can not be updated.
End If