DoesValueExistForThisDataLogGroup(Int32,String,Int32) Method
- Last UpdatedNov 06, 2025
- 1 minute read
The DoesValueExistForThisDataLogGroup() method checks whether a value exists for a value index column that is associated to a data log group.
This overload of the method uses the group description to identify the data log group.
'Declaration
Public Overloads Shared Function DoesValueExistForThisDataLogGroup( _
ByVal sessionId As Integer, _
ByVal grpDesc As String, _
ByVal valueIndex As Integer _
) As Boolean
'Usage
Dim sessionId As Integer
Dim grpDesc As String
Dim valueIndex As Integer
Dim value As Boolean
value = DataLogGrp.DoesValueExistForThisDataLogGroup(sessionId, grpDesc, valueIndex)
public static bool DoesValueExistForThisDataLogGroup(
int sessionId,
string grpDesc,
int valueIndex
)
Parameters
- sessionId
- Optional. Holds the session ID and thus the user who is making this method call.
- grpDesc
- Required. Holds the description of the data log group.
- valueIndex
- Required. Holds the index number that identifies the valuen column from the Data_Log table.
Return Value
Returns a Boolean value that is a flag that indicates whether a value exists for a value index column that is associated to a data log group. If set to true, the value exists.