====== ROWHEIGHT message ====== ==== Description ==== Set or retrieve the height of all rows in an edit table control. ==== Applies To ==== Edit table. ==== Syntax ==== ////rowHeight//// = **Send_Message**(//controlID//, "ROWHEIGHT", //RowNumber//, //NoOfPixels//) ==== Parameters ==== Parameters are as follows. ^Parameter^Description^ |//RowNumber//|Pass a zero (0).| |//NoOfPixels//|The height of the rows in pixels.|| ==== Returns ==== Returns the rowheight of the table's row prior sending of the message. ==== Example ==== controlID = @window:'.TABLE_1' heightInPixels = 16 rh = Send_Message(control,'ROWHEIGHT',0,heightInPixels)