mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-22 07:39:26 +02:00
Docs: LCL/various. Fixes XML tagging with extra or missing space characters.
This commit is contained in:
parent
4f63c2cfcb
commit
5a369f24a4
@ -153,7 +153,7 @@
|
||||
<short>Size of the angle that forms the arrow pointer.</short>
|
||||
<descr>
|
||||
<p>
|
||||
<var>ArrowPointerAngle</var> is an <var>Integer</var>property with the size of the angle (in degress) that forms the arrow pointer for the control. It determines the size in degrees for the angles on the base of the arrow pointer. ArrowPointerAngle must be in the range specified by the <var>cMinAngle</var> and <var>cMaxAngle</var> constants in the implementation for the control. The default value for the property is 60, and causes all three angles in the arrow pointer to measure 60 degrees.
|
||||
<var>ArrowPointerAngle</var> is an <var>Integer</var> property with the size of the angle (in degress) that forms the arrow pointer for the control. It determines the size in degrees for the angles on the base of the arrow pointer. ArrowPointerAngle must be in the range specified by the <var>cMinAngle</var> and <var>cMaxAngle</var> constants in the implementation for the control. The default value for the property is 60, and causes all three angles in the arrow pointer to measure 60 degrees.
|
||||
</p>
|
||||
<p>
|
||||
ArrowPointerAngle is used to calculate the points for the arrow pointer triangle.
|
||||
|
@ -1974,7 +1974,7 @@
|
||||
<short>Displays the drop down for the combo-box.</short>
|
||||
<descr>
|
||||
<p>
|
||||
<var>DropDown</var> is an overridden method used to display the drop down for the combo-box if it is not already visible. DropDown calls the inherited method to trigger the <var>OnDropDown</var> method (when assigned). When the drop down is already visible, the value in an enabled at <var>ItemIndex</var> is <var>Toggle</var>d.
|
||||
<var>DropDown</var> is an overridden method used to display the drop down for the combo-box if it is not already visible. DropDown calls the inherited method to trigger the <var>OnDropDown</var> method (when assigned). When the drop down is already visible, the value in an enabled at <var>ItemIndex</var> is <var>Toggled</var>.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
|
@ -4896,7 +4896,7 @@
|
||||
<var>TTabControl</var> - a series of <var>Tabs</var> along the edge of a display area; selection of a <var>Tab</var> governs the contents of the <var>DisplayRect</var>
|
||||
</p>
|
||||
<p>
|
||||
Use <var>TTabControl</var>by selecting its icon from the Common Controls tab of the IDE Component Palette and placing it at the desired location on the <var>Form</var>. Use the Form Designer and Object Inspector to adjust its shape, size, alignment, anchoring and other properties. Tabs can be added or removed from the component by selecting it, then right-clicking with the mouse to get a pop-up menu whose first item is 'Add Tab'. Once created, the Tabs can be edited by selecting the <var>Tabs</var> entry in the Object Inspector and selecting the ellipsis (...) which will cause a pop-up String editor to appear. The tabs can be given new captions, moved up and down the list or removed altogether as required.
|
||||
Use <var>TTabControl</var> by selecting its icon from the Common Controls tab of the IDE Component Palette and placing it at the desired location on the <var>Form</var>. Use the Form Designer and Object Inspector to adjust its shape, size, alignment, anchoring and other properties. Tabs can be added or removed from the component by selecting it, then right-clicking with the mouse to get a pop-up menu whose first item is 'Add Tab'. Once created, the Tabs can be edited by selecting the <var>Tabs</var> entry in the Object Inspector and selecting the ellipsis (...) which will cause a pop-up String editor to appear. The tabs can be given new captions, moved up and down the list or removed altogether as required.
|
||||
</p>
|
||||
<p>
|
||||
Each Tab has an Index (starting from 0) and this index can be used to specify an entry from <var>Images</var> for display in the <var>DisplayRect</var>.
|
||||
@ -17647,7 +17647,7 @@ AToolbar.ButtonHeight := 30;
|
||||
<short>Drawing style used for a grabber or gripper displayed on the control.</short>
|
||||
<descr>
|
||||
<p>
|
||||
<var>GrabStyle</var> is a <var>TGrabStyle</var>property with the drawing style used for a grabber or gripper displayed for the control. The default value for the property is defined in the <var>cDefGrabStyle</var> constant.
|
||||
<var>GrabStyle</var> is a <var>TGrabStyle</var> property with the drawing style used for a grabber or gripper displayed for the control. The default value for the property is defined in the <var>cDefGrabStyle</var> constant.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso/>
|
||||
@ -19597,7 +19597,7 @@ AToolbar.ButtonHeight := 30;
|
||||
|
||||
<element name="TTreeNode.DisplayRect">
|
||||
<short>
|
||||
<var>DisplayRect</var> - returns the coordinates of the rectangle containing the current entry; if <var>TextOnly</var>is True, returns the coordinates for the text.
|
||||
<var>DisplayRect</var> - returns the coordinates of the rectangle containing the current entry; if <var>TextOnly</var> is True, returns the coordinates for the text.
|
||||
</short>
|
||||
<descr/>
|
||||
<seealso/>
|
||||
@ -26149,7 +26149,7 @@ OldExpanded.Free;
|
||||
|
||||
<element name="THeaderSection.Width">
|
||||
<short>
|
||||
The <var>Width</var>of the section that appears on the <var>THeaderControl</var>.
|
||||
The <var>Width</var> of the section that appears on the <var>THeaderControl</var>.
|
||||
</short>
|
||||
</element>
|
||||
|
||||
@ -26643,7 +26643,7 @@ OldExpanded.Free;
|
||||
|
||||
<element name="TCustomHeaderControl.SectionDrag">
|
||||
<short>
|
||||
<var>SectionDrag</var> - method to emulate the <var>OnSectionDrag</var>event.
|
||||
<var>SectionDrag</var> - method to emulate the <var>OnSectionDrag</var> event.
|
||||
</short>
|
||||
<descr/>
|
||||
<seealso/>
|
||||
|
@ -1555,7 +1555,7 @@
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
<var>OnKeyUp</var>is an event handler signalled when a key is up (not pressed) while the control has focus. The key may already have been up when the control received focus, or a pressed key may become released during the time the control has focus.
|
||||
<var>OnKeyUp</var> is an event handler signalled when a key is up (not pressed) while the control has focus. The key may already have been up when the control received focus, or a pressed key may become released during the time the control has focus.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
@ -1921,9 +1921,10 @@
|
||||
<short>Indicates if text is wrapped at the right edge of the control.</short>
|
||||
<descr>
|
||||
<p>
|
||||
<var>WordWrap</var>indicates whether a word is to be wrapped to the next line if the text is about to become too long for the width available in the control.
|
||||
<var>WordWrap</var> indicates whether a word is to be wrapped to the next line if the text is about to become too long for the width available in the control.
|
||||
</p>
|
||||
<p>The default value for the property is <b>False</b>.
|
||||
<p>
|
||||
The default value for the property is <b>False</b>.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
@ -2188,7 +2189,7 @@
|
||||
<element name="TCustomDBListBox.Destroy">
|
||||
<short>Destructor for the class instance.</short>
|
||||
<descr>
|
||||
<var>Destroy</var>is the overridden destructor for the class instance. Destroy frees resources allocated to internal members in the class instance, and calls the inherited destructor prior to exiting from the method.
|
||||
<var>Destroy</var> is the overridden destructor for the class instance. Destroy frees resources allocated to internal members in the class instance, and calls the inherited destructor prior to exiting from the method.
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.stdctrls.TCustomListBox.Destroy">CustomListBox.Destroy</link>
|
||||
@ -2476,7 +2477,7 @@
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
<var>OnDrawItem</var>is an event handler used to draw an Item on the data-aware list box.
|
||||
<var>OnDrawItem</var> is an event handler used to draw an Item on the data-aware list box.
|
||||
</p>
|
||||
<p>
|
||||
For example, selecting an item may require it to be highlighted or have its font or background changed.
|
||||
|
@ -3576,7 +3576,7 @@ ADialog.CustomColors.Values['ColorA'] := 'FFFF00';
|
||||
<short>Set of common buttons displayed on the Task dialog.</short>
|
||||
<descr>
|
||||
<p>
|
||||
<var>CommonButtons</var>is a <var>TTaskDialogCommonButtons</var> property with the set of common buttons displayed on the Task dialog. Values from the <var>TTaskDialogCommonButton</var> enumeration are included in the set to make buttons visible. Values are excluded from the set to remove the buttons. The default value for the property is <var>[tcbOk, tcbCancel]</var>, and enables the <b>OK</b> and <b>Cancel</b> buttons for the Task dialog.
|
||||
<var>CommonButtons</var> is a <var>TTaskDialogCommonButtons</var> property with the set of common buttons displayed on the Task dialog. Values from the <var>TTaskDialogCommonButton</var> enumeration are included in the set to make buttons visible. Values are excluded from the set to remove the buttons. The default value for the property is <var>[tcbOk, tcbCancel]</var>, and enables the <b>OK</b> and <b>Cancel</b> buttons for the Task dialog.
|
||||
</p>
|
||||
<p>
|
||||
CommonButtons is used in conjunction with the <var>Buttons</var> collection, which contains custom button definitions that do not fit the common button definitions. Both CommonButtons and Buttons are used in <var>DoExecute</var>, and passed as arguments to the wrapper in <file>LCLTaskDialog</file>.
|
||||
|
@ -2257,7 +2257,7 @@
|
||||
<var>TAcceptDateEvent</var> is an object procedure which specifies an event handler used to examine and verify a <var>TDateTime</var> value.
|
||||
</p>
|
||||
<p>
|
||||
<var>Sender</var>is the object generating the event notification.
|
||||
<var>Sender</var> is the object generating the event notification.
|
||||
</p>
|
||||
<p>
|
||||
<var>ADate</var> is the <var>TDateTime</var> value examined in the event handler.
|
||||
|
@ -3917,7 +3917,7 @@
|
||||
|
||||
<element name="TCustomCheckGroup">
|
||||
<short>
|
||||
<var>TCustomCheckGroup</var>is the base type for <var>TCheckGroup</var>.
|
||||
<var>TCustomCheckGroup</var> is the base type for <var>TCheckGroup</var>.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
@ -4883,7 +4883,7 @@
|
||||
<short>Labelled Edit is an Edit Box with a permanently attached Label.</short>
|
||||
<descr>
|
||||
<p>
|
||||
<var>TLabeledEdit</var>is an Edit Box with a permanently attached Label.
|
||||
<var>TLabeledEdit</var> is an Edit Box with a permanently attached Label.
|
||||
</p>
|
||||
<p>
|
||||
Saves time and effort over placing separate Label and Edit Box on Form. The properties are described in the parent component, <link id="#lcl.ExtCtrls.TCustomLabeledEdit">TCustomLabeledEdit</link> from which most of the properties are inherited.
|
||||
@ -4984,7 +4984,7 @@
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
<var>TCustomPanel</var>is the base type for <var>TPanel</var>.
|
||||
<var>TCustomPanel</var> is the base type for <var>TPanel</var>.
|
||||
</p>
|
||||
<p>
|
||||
A Panel is a defined rectangular area on a form into which other components can be placed to group them functionally and geographically. <var>TCustomPanel</var> defines the positioning and beveling properties of any descendent classes, and provides methods for painting and writing text to the panel.
|
||||
|
@ -4809,7 +4809,7 @@
|
||||
<var>OnMeasureItem</var> is a <var>TMeasureItemEvent</var> property with the event handler signalled to get the height for specified item in the list box control. OnMeasureItem is signalled (when assigned) from the <var>MeasureItem</var> method, and occurs when the <b>LM_MeasureItem</b> message is handled for the control. MeasureItem provides the arguments passed to the event handler, while the message handler stores the calculated height in <var>ItemHeight</var> when it is not 0 (zero).
|
||||
</p>
|
||||
<p>
|
||||
An application must implement an object procedure to respond to the event notification. <var>Index</var> contains the position in <var>Items</var> with the string to examine in the event handler. On entry, <var>TheHeight</var> contains the text height for the current <var></var>Font calculated using the <var>Canvas</var> in the control. The value in TheHeight can be updated with the value derived in the event handler.
|
||||
An application must implement an object procedure to respond to the event notification. <var>Index</var> contains the position in <var>Items</var> with the string to examine in the event handler. On entry, <var>TheHeight</var> contains the text height for the current <var>Font</var> calculated using the <var>Canvas</var> in the control. The value in TheHeight can be updated with the value derived in the event handler.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
|
Loading…
Reference in New Issue
Block a user