|
|
|
|
|
- Browsing List Box, Table and Combo Box controls
- List Box control
- ListView control
- Limits
LineHeight (Property) In french: HauteurLigne
The LineHeight property is used to get and change the height of the rows: - in a List Box control,
- in a ListView control (standard display mode only),
- in a Table control,
- in a Combo Box control,
- in a Looper control (row height).
- in an Organizer control.
- in a Spreadsheet control.
- in a Treeview control.
Remarks: - List Box or Combo Box control: The height of rows is defined in the window editor, in the "Style" tab of control description.
- Table, TreeView, Looper or Spreadsheet control: The height of rows is defined in the window editor, in the "Details" tab of control description.
// Increase the height of rows found in "TABLE_CustomerTable" TABLE_CustomerTable.LineHeight = TABLE_CustomerTable.LineHeight + 100 // Equivalent to: TABLE_CustomerTable.LineHeight +=100
Syntax
Finding out the height of rows in a control Hide the details
<Current height> = <Control used>.LineHeight
<Current height>: Integer Height (in pixels) of rows in the specified control. <Control used>: Control name Name of the control to be used.
Modifying the height of rows in a control Hide the details
<Control used>.LineHeight = <New height>
<Control used>: Control name Name of the control to be used. <New height>: Integer New height (in pixels) of the rows in the specified control. Remarks Browsing List Box, Table and Combo Box controls When the height of rows is modified in a browsing Table, List Box or Combo Box control, the new height is applied to the visible rows only. List Box control If necessary, a vertical scrollbar can be displayed in a List Box control when the height of rows is modified.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|