bIsParent = MTblIsParentRow( hWndTbl, nRow )

Determines whether a row is a parent row.

Parameters
hWndTbl
Window Handle: Handle of the table

nRow
Number: Row

Return
Boolean: TRUE when the row is a parent row, FALSE when not or an error occurs

Example
In this example a message is shown when the user clicks a parent row:

On MTM_AreaLBtnDown
  Set nRow = lParam
  If nRow != TBL_Error
    If MTblIsParentRow( hWndForm, nRow )
      Call SalMessageBox( 'This is a parent row', 'Message', MB_Ok )

See also
Tree view

Created with the Personal Edition of HelpNDoc: Easily create EPub books