Public Function Grouping_IsFirstGroupRow (
GroupDefIndex As Integer,
Optional RowIndex As Long = -1
) As Boolean
Is this the first row in the group ?
The group definition index.
The row index to use for grouping calculation, or the current iterated row in the underlying DataList if omitted.
Iteration is normally used.
Dim obj As New xf_DataListExt
Dim b As Boolean
b = obj.Grouping_IsFirstGroupRow(GroupDefIndex)
b = obj.Grouping_IsFirstGroupRow(GroupDefIndex, RowIndex)
Debug.Print lstExt.Grouping_IsFirstGroupRow(2)