|
|
|
|
|
VisibleEndUser (Property) In french: VisibleUtilisateurFinal
Available only with these kinds of connection
The VisibleEndUser property is used to: - Find out whether an item is visible (or not) to the end users. This item was defined in the data model editor or programmatically.
- Define if an item must be visible to the end users (items described programmatically only).
When the item is visible to the end users: Remark: Item visibility is defined in the editor, in the description of the items of a data file ("Visible to the end user in "Reports and Queries"" in the "Reports and Queries" tab of the item description window).
// Define the visibility of the Orders.OrdDate item OrdDate.VisibleEndUser = True ... // Validate the data file description HDescribeFile(Orders) Syntax
Finding out whether an item is visible to the end user Hide the details
Result> = <Data file>.<Item>.VisibleEndUser
<Result>: Boolean - True if the item is visible to the end users,
- False otherwise.
<Data file>: Character string Name of the data file used. <Item>: Character string Name of the item used.
Defining the visibility of an item described programmatically Hide the details
<Item>.VisibleEndUser = <Visibility>
<Item>: Character string Name of the item used. This name was defined by the Item Description type. <Visibility>: Boolean - True if the item must be visible to the end users,
- False otherwise.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|