|
|
|
|
|
- Height in a report
- Row height
- Initial height (control and window)
- Height of controls in a form
- Limitations
Height (Property) In french: Hauteur
// Increases the height of "EDT_CustomerName" EDT_CustomerName.Height = EDT_CustomerName.Height + 15 // Is equivalent to: EDT_CustomerName.Height += 15 Syntax
Finding out the height of an element Hide the details
<Result> = <Element used>.Height
<Result>: Real Height of the specified element. This height is expressed in pixels in a window and/or in a page, and in millimeters in a report. <Element used>: Name of control or block. Name of the element (control or block) to use.
Modifying the height of an element Hide the details
<Element used>.Height = <New height>
<Element used>: Name of control or block. Name of the element (control or block) to use. <New height>: Real New height of the specified element. This height is expressed in pixels in a window and/or in a page, and in millimeters in a report.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|