====== DELETEROW event ====== ==== Description ==== Occurs when a row is deleted from an edit table. ==== Syntax ==== //bforward// = **DELETEROW**(//ctrlentID//, //ctrlclassID, rownum, rowdata//) ==== Parameters ==== DELETEROW accepts arguments for the following parameters. ^Parameter^Description^ |//ctrlendID//|Has the format //WindowName.ControlName//, where //WindowName// is the identifier of the window that contains the affected control, and //ControlName// is the identifier of the control. Notice that a period separates the two values.| |//ctrlclassID//|The type of control that recognizes the event. The window control type is the only valid entry.| |//rownum//|Deleted row number.| |//rowdata//|@VM-delimited array of cells.| ==== Returns ==== True or false. If false, the program execution returns to the calling procedure. If true, the event processing goes to the next level. ==== See Also ==== [[insertrow_event|INSERTROW event]] ==== Remarks ==== To undo a DELETEROW, pass //rownum// and //rowdata// to [[insert_message|Send_Message("INSERT")]]. ** **