@@ -7709,12 +8351,20 @@ If the TabStop is True, the control is in the tab order. If TabStop is False, th
Additional Help can always be obtained by selecting a property or keyword, in either the Object Inspector or the Source Editor, and pressing F1. You will be taken by your Help browser to the appropriate page in the documentation.
If the description of a property on that page is insufficient, you can navigate to the corresponding description in the ancestor classes, by selecting the links in the Inheritance listing or by selecting the ancestor Type in the declaration of the object.
- Constructors
+
+ Constructors
+
+
+
such as Create allocate memory and system resources needed by the object. They also call the constructor of any sub-objects present in the class.
- Destructors:
+
+ Destructors:
+
+
+
@@ -7789,6 +8439,10 @@ If the TabStop is True, the control is in the tab order. If TabStop is False, th
Items |
The list of 'Things' that the object contains, such as a group of images, a series of lines of text, a number of actions in an actionlist, etc |
+
+ Lines |
+ An array of strings, containing the textual data in controls with more than a single line of data, such as an Edit-Box or a Combo-Box. The array is zero-indexed, ie the lines are numbered [0..numLines-1] |
+
Name |
The identifier by which the control is known in the program. The IDE gives it a default name based on the underlying type, for example successive instances of TBitButton would be named Form1.BitBitton1 and Form1.BitButton2; it is up to the application programmer to give them more meaningful names such as ExitButton or OKButton. By default the Name of the control is applied to the Caption for the control, but the text of the Caption may be changed separately. |
@@ -7827,7 +8481,7 @@ If the TabStop is True, the control is in the tab order. If TabStop is False, th
Text |
- The String of Text that represents the actual data that this control contains. Applies particularly to Text, Memo and StringList types of object. Most of the editing operations (such as Select, Clear, Cut, Copy are performed in this part of the object, which holds the actual string being edited. If the control contains more than a single line of text, for example TMemo, then the textual elements are arranged as an array of strings in Lines. |
+ The String of Text that represents the actual data that this control contains. Applies particularly to Text, Memo and StringList types of object. Most of the editing operations (such as Select, Clear, Cut, Copy) are performed in this part of the object, which holds the actual string being edited. If the control contains more than a single line of text, for example TMemo or TComboBox, then the textual elements are arranged as an array of strings (zero-indexed, ie numbered from [0..numLines-1]) in Lines. |
Visible |
@@ -7835,7 +8489,7 @@ If the TabStop is True, the control is in the tab order. If TabStop is False, th
WordWrap |
- Logical flag to show whether or not word-wrap is enabled, ie if a word comes near the end of a line and is going to be too long for the line, it is wrapped down to the next line. |
+ Logical flag to show whether or not word-wrap is enabled, ie if a word comes close to the end of a line and is going to be too long for the line, it is wrapped down to the next line. |
Many actions are commonly listed in the 'Events' tab of the Object Inspector. If you select an entry in the list, a ComboBox appears with a DropDown list showing any actions that have aleady been defined, and allowing you to choose one to be associated with this event. Alternatively you can select the ellipsis (three dots ...) and you will be taken to an area of the Source Editor where you can begin typing your own action instructions for the selected event.