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