MTblIsRowDisabled
bDisabled = MTblIsRowDisabled( hWndTbl, nRow )
Determines whether a row is disabled.
Parameters
hWndTbl
Window Handle: Handle of the table
nRow
Number: Row number
Return
Boolean: TRUE if the row is disabled or FALSE if not
Example
In this example a message is shown when the user clicks a disabled row:
On MTM_AreaLBtnDown
Set nRow = lParam
If nRow != TBL_Error
If MTblIsRowDisabled( hWndForm, nRow )
Call SalMessageBox( 'Row is disabled', 'Message', MB_Ok )
See also
Disable cells and rows
Created with the Personal Edition of HelpNDoc: Full-featured multi-format Help generator