Thank you for the helpful reply.
Below is the code we are using to retrieve the row header value using the DoubleClick event. Your suggestion works perfectly when the row CELL (yellow circle above) is clicked on but oRow is empty and returns an error when the row HEADER is clicked on (red circle).
Private Sub ultraPivotGrid1_DoubleClick(sender As Object, e As EventArgs) Handles ultraPivotGrid1.DoubleClick
Dim oRow As Infragistics.Win.UltraWinPivotGrid.Data.PivotGridRow
oRow = ultraPivotGrid1.RowFromPoint(ultraPivotGrid1.PointToClient(System.Windows.Forms.Form.MousePosition))
If oRow.Axis.Tuples.Count > 1 Then
MsgBox(oRow.Axis.Tuples(oRow.Index + 1).Members(0).Caption)
End If
End Sub
What do we need to do in order to properly retrieve the row header value when the row header is clicked on?
Thanks again for your assistance with this.