The height of each row.
Usage
Set_Property(OLECtrlEntID, "OLE.FixedRowHeight", Value)
Values
Value can be any positive whole number:
Default: <Based on font height>
Remarks
By default, the height of the rows are determined by the current font. If you want more control, you can set this property to any positive number, at which point all rows will be exactly that tall in pixels. If you want to return back to auto-sizing, then set this to zero.
Example
// Make all rows 32 pixels tall Set_Property(@Window:".OLE_REPORTTABLE", "OLE.FixedRowHeight", 32) // Make all rows based on font size Set_Property(@Window:".OLE_REPORTTABLE", "OLE.FixedRowHeight", 0)