- Font variable
- Type of object
- Name of a connection
- Limits
Name (Property) In french: Nom
Not available with this kind of connection
..Name is used to find out: - the name of the font associated with a Font variable.
Note: The name of the font must correspond to one of the fonts installed on the current computer. - the name of a control, report or report block.
- the name of a control, group of controls or window.
- the name of a control, group of controls or page.
..Name is used to find out the real name of a control generated in the page, which means the alias of the control. This property can only be used on the following types of controls: edit control, List Box, Combo Box, Check Box, Radio Button and Button.
..Name is used to modify the name of the font associated with a Font variable. ..Name can also be used to manage the name of different HFSQL objects. You can: - Find out the name of a connection.
- Find out the name of an object handled by indirection:
- data file defined in the data model editor or by programming,
- view,
- query run beforehand by HExecuteQuery,
- item defined in the data model editor or by programming,
- link defined in the data model editor or by programming.
- Define the name of the described element:
- when a file is described by programming,
- when an item is described by programming,
- when a link is described by programming,
- when a full-text index is described by programming.
Remark: From version 19, HFSQL is the new name of HyperFileSQL.
// Procedure to which a control name is passed in parameter PROCEDURE MakeVisible(Control) // Name of current control IF {Control}..Name = "CustomerName" THEN {Control}..Visible = True END
Syntax
Finding out the name of specified element Hide the details
<Result> = <Element name>..Name
<Result>: Character string Name of specified element. <Element name>: Character string (with or without quotes) Name of element to use.
This page is also available for…
|
|
|