CimTable.GetGroupLogPointAttrib (method)

Gets the logging attributes for a given point in a group log.
Syntax: long = object.GetGroupLogPointAttrib ( pointID )
Parameters:
pointID As String - The name of the point whose logging attributes are to be retrieved
Description: The CimTable.GetGroupLogPointAttrib method allows you to retrieve the logging attributes for a specific point in a table.

Note: This method is only vaild for group tables.

Example

' Sets cimRawValue if not already set
Dim database As New CimDatabase
Dim GrpTable As CimTable
Set GrpTable = database.GetTable ("GRP_TABLE")
Dim attribs As Long
attribs = GrpTable.GetGroupLogPointAttrib("POINT2")
If (NOT (attribs And cimRawValue)) Then
    GrpTable.SetGroupLogPointAttrib "POINT2", (attribs OR cimRawValue)
End If