|
|
|
|
|
- Control attributes
- Group of controls
- Using shortcuts according to control states
- Controls on tabs
- Rows in a Table control
- Action Bar
- Columns in a Table control
- Limits
Visible (Property) In french: Visible
The Visible property is used to: - Find out whether an element is visible.
- Make an element visible or invisible.
This property applies to the: - controls and groups of controls found in a window, in a page or in a report.
- report blocks,
- menu options.
Remarks: - In the window editor and in the page editor, the control visibility is defined in the "UI" tab of the control description.
- In the report editor, the control visibility is defined in the "Details" tab of the control description.
- The Visible property is available for table rows.
// Make the "EDT_Company" control visible if it is invisible IF EDT_Company.Visible = False THEN EDT_Company.Visible = True END
Syntax
Finding out whether an element is visible Hide the details
<Result> = <Element used>.Visible
<Result>: Boolean - True if the specified element is visible,
- False otherwise.
<Element used>: Type of element Name of the element to be used.
Making a control or a report block visible/invisible Hide the details
<Element used>.Visible = <Visible/Invisible>
<Element used>: Type of element Name of element to use. <Visible/Invisible>: Boolean - True if the specified element must be visible,
- False if the specified element must be invisible.
Remarks Control attributes The Visible property does not modify the other state attributes of the control (selection without input, active or grayed out) Group of controls If the specified object is a group of controls, the visibility of all controls from that group changes.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|