Edit
(System Library)
Description: | Draws an edit field with (optional) title or bevel or both. |
Returns: | Nothing |
Usage: | Steady State only. |
Function Groups: | Graphics |
Related to: | Bevel | CheckBox | ColorSelect | DropList | DropTree | FileChooser | GridList | HScrollbar | Listbox | RadioButtons | SpinBox | SplitList | ToolBar | VScrollbar |
Format: | System.Edit(X1, Y1, X2, Y2, Title, Variable [, FocusID, Trigger, View, DataType, DrawBevel, VertAlign, AlignTitle, LowLimit, HighLimit, Style, PrefixValue, SuffixValue, BGColor, FGColor, FontParm, TitleBGColor, TitleFGColor, BevelColor, PlaceHolder, DelEditCtrl]) |
Parameters: |
X1 | ||||||||||||
Required. Any numeric expression giving the X coordinate on the screen of one side of the edit field. | ||||||||||||
Y1 | ||||||||||||
Required. Any numeric expression giving the Y coordinate on the screen of either the top or bottom of the edit field. | ||||||||||||
X2 | ||||||||||||
Required. Any numeric expression giving the X coordinate on the screen of the side of the edit field opposite to X1. | ||||||||||||
Y2 | ||||||||||||
Required. Any numeric expression giving the Y coordinate on the screen of the top or bottom of the edit field, whichever is the opposite of Y1. | ||||||||||||
Title | ||||||||||||
Required. Any text expression to be used as a title for the field. | ||||||||||||
Variable | ||||||||||||
Required. A variable whose value is set by the edit field. | ||||||||||||
FocusID | ||||||||||||
Optional. Any numeric expression from 0 to 32767 for the focus number of this graphic. If this value is 0, the edit field will display its current setting, but its value will not be able to be changed and it will appear grayed out. The default value is 1. | ||||||||||||
Trigger | ||||||||||||
Optional. Trigger provides feedback. While editing, the value will be 0. When editing is complete (tab, enter or loss of focus) the value will change to non-zero: 1 if enter is pressed, 2 otherwise. | ||||||||||||
View | ||||||||||||
Optional. Indicates how to display the edit field, as follows
This parameter may be used to force an edit field with a FocusID of 0 to display normally, rather than allowing it to default to its grayed color. Note that if the FocusID is not 0, setting this value as 2 will not force the field to gray out. The default value is 2 if FocusID is 0 and 1 otherwise. |
DataType | ||||||||||||||||
Optional. Any numeric expression giving the type of data accepted by the edit field as follows
For types 0 - 2, if the number entered into the field is prefaced by a "0x" the value is taken to be hexadecimal format, and if it is prefaced by a "0" it is considered to be octal. In either case, the value is converted to decimal format when return is pressed or the focus is lost. For type 5, regardless of whether the number entered into the field is prefaced by a "0" the value is taken to be octal and will be displayed as such. The actual type of Variable will be text. Type 6, like type 5 will be kept in its declared format of hexadecimal regardless of whether the number entered into the field is prefaced by a "0x". The actual type of Variable will be text The default value is 4 - text. |
DrawBevel | ||||||||
Optional. Any logical expression. If true (non-0) a bevel is drawn around the edit field, if false (0) no bevel is drawn. If the edit field is beveled, its size will become fixed and will be the same as that for a droplist. The default value is false. |
||||||||
VertAlign | ||||||||
Optional. Any numeric expression that sets the vertical alignment of the edit field according to one of the following options
Whether the title is included when the vertical alignment is calculated is determined by the value of AlignTitle. The default value is 0. |
AlignTitle | ||||||||||||||||||||||||||||||||||||||||
Optional. Any logical expression. If true (non-0) the title is included in the calculation for vertical alignment. If false(0) it is added to the edit field after it (and its bevel if one exists) has been vertically aligned. The default is true. | ||||||||||||||||||||||||||||||||||||||||
LowLimit | ||||||||||||||||||||||||||||||||||||||||
Optional. Any expression giving the minimum value or minimum number of characters to be accepted by the edit field (depending on the data type). This value may be a decimal, octal or hexadecimal value. If this parameter is valid and a value less than LowLimit is entered in the field (or there are too few characters, in the case of text value), the variable set by the field will revert to the previous value. No default. |
||||||||||||||||||||||||||||||||||||||||
HighLimit | ||||||||||||||||||||||||||||||||||||||||
Optional. Any numeric expression giving the maximum value or maximum number of characters to be accepted by the edit field (depending on the data type).
|
||||||||||||||||||||||||||||||||||||||||
Style | ||||||||||||||||||||||||||||||||||||||||
Optional. Default 0. Comprised of a combination of bit values to yield the desired effects. Note that some combinations should not be used as they could be mutually exclusive. For example converting input to all uppercase and to all lowercase (bits 2 and 3 both set). Bits 0 and 1 are reserved for bit compatibility with WinComboCtrl, and should be set to "0". Bits 2, 3 and 4 define input character handling. It is reasonable to set bit 2 and 4 or 3 and 4, but not bits 2 and 3. If not set, input is used exactly as typed. (See: Bitwise Parameters & Operations)
|
PrefixValue |
Optional. Indicates the text expression that should be displayed immediately before (i.e. to the left of) the editable part of the control. No default. |
SuffixValue |
Optional. Indicates the text expression that should be displayed immediately after (i.e. to the right of) the editable part of the control. No default. |
BGColor |
Optional. Any numeric expression for the background color of the control. No default value. |
FGColor |
Optional. Any numeric expression for the foreground color of the control. No default value. |
FontParm |
Optional. A Font value, or the number zero. Set as "0" to use the default system font. |
TitleBGColor |
Optional. Background color under the title. |
TitleFGColor |
Optional. Foreground (text) color for the title. |
BevelColor |
Optional. Color of the bevel line. |
PlaceHolder |
Optional text. Information to display in place of invalid entry. Typically a phrase describing how the field is to be used. |
DelEditCtrl |
Optional Boolean. When set to TRUE, this parameter changes the Disable behavior of the Edit input by replacing the WinEditCtrl component with plain text, thus disabling all interactions. If set to FALSE (the default) then when the control is disabled, the Edit input will still absorb all clicks and prevent other on-click events because of the WinEditCtrl component. |
Comments: |
This module is a member of the System Library, and must therefore be prefaced by \System. as shown in the "Format" section. If your application predates version 11.2, use the backslash notation rather than dot: \System\ The height of the edit field is constant, with X1 and X2 defining its width, and Y1 and Y2 defining the boundaries in which it is to be confined vertically, which may or may not include the added height of a title and bevel, depending on the alignment used and if they exist. |
Examples:
Examples often use English text in labels so that you can make a copy as a starting point when building your own version.
Better practice is to replace the text with phrase keys, and the \GetPhrase() function.
System.Edit(10, 50 { Top left corner - fixed }, 110, 20 { Bottom right corner }, "Description" { Title }, Desc { Var to update } { Remainder of parameters not used, so omitted });
System.Edit(20, 110, 120, 70 { Outline of field }, "Name", Name { Title; var to update }, 2, DoneFlag { Focus ID, trigger }, Invalid { Default display }, 2 { Long integer values }, Invalid { Default of no bevel }, 1 { Center the editfield }, 1 { Include title in alignment }, Invalid { No minimum value }, 100 { Maximum acceptable value });