mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 14:58:13 +02:00
Docs: LCL. Fixes content, links for properties re-declared with different default values.
git-svn-id: trunk@65481 -
This commit is contained in:
parent
f28b3ae2c7
commit
d37d3f099f
@ -1093,9 +1093,9 @@ AButtonPanel.ShowGlyphs := [pbOk, pbCancel];
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TButtonPanel.Align" link="#lcl.controls.TControl.Align"/>
|
||||
<element name="TButtonPanel.Align" link="#lcl.buttonpanel.TCustomButtonPanel.Align"/>
|
||||
<element name="TButtonPanel.Anchors" link="#lcl.controls.TControl.Anchors"/>
|
||||
<element name="TButtonPanel.AutoSize" link="#lcl.controls.TControl.AutoSize"/>
|
||||
<element name="TButtonPanel.AutoSize" link="#lcl.buttonpanel.TCustomButtonPanel.AutoSize"/>
|
||||
<element name="TButtonPanel.BorderSpacing" link="#lcl.controls.TControl.BorderSpacing"/>
|
||||
<element name="TButtonPanel.Constraints" link="#lcl.controls.TControl.Constraints"/>
|
||||
<element name="TButtonPanel.Enabled" link="#lcl.controls.TControl.Enabled"/>
|
||||
|
@ -2505,7 +2505,26 @@
|
||||
<seealso></seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomSpeedButton.Color" link="#lcl.controls.TControl.Color"/>
|
||||
<element name="TCustomSpeedButton.Color">
|
||||
<short>
|
||||
The background color for the control.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is clBtnFace in TCustomSpeedButton.
|
||||
</p>
|
||||
<p>
|
||||
If the color is clDefault , the result will need to be passed through GetDefaultColor to resolve clDefault to a TColor value. Convenience routines which obtain the color by resolving clDefault and ParentColor are also provided as TControl.GetColorResolvingParent and TControl.GetRGBColorResolvingParent.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TControl.Color">TControl.Color</link>
|
||||
<link id="#lcl.controls.TControl.ParentColor">TControl.ParentColor</link>
|
||||
<link id="#lcl.controls.TControl.GetDefaultColor">TControl.GetDefaultColor</link>
|
||||
<link id="#lcl.controls.TControl.GetColorResolvingParent">TControl.GetColorResolvingParent</link>
|
||||
<link id="#lcl.controls.TControl.GetRGBColorResolvingParent">TControl.GetRGColGetRGBColorResolvingParentarent</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomSpeedButton.Down">
|
||||
<short>Indicates if the button has been set to the Down state.</short>
|
||||
@ -2690,39 +2709,14 @@
|
||||
</descr>
|
||||
</element>
|
||||
|
||||
<element name="TSpeedButton.Color" link="#lcl.controls.TControl.Color">
|
||||
<descr>
|
||||
<p>Standard properties, which should be supported by all descendants.</p>
|
||||
<p>Reads the value for color, or stores the value, and sets a flag if the color is stored.</p>
|
||||
<p>The default color is the same as the window in which the control is located.</p>
|
||||
</descr>
|
||||
</element>
|
||||
|
||||
<element name="TSpeedButton.Color" link="#lcl.buttons.TCustomSpeedButton.Color"/>
|
||||
<element name="TSpeedButton.Down" link="#lcl.buttons.TCustomSpeedButton.Down"/>
|
||||
|
||||
<element name="TSpeedButton.DragCursor" link="#lcl.controls.TControl.DragCursor"/>
|
||||
<element name="TSpeedButton.DragKind" link="#lcl.controls.TControl.DragKind"/>
|
||||
<element name="TSpeedButton.DragMode" link="#lcl.controls.TControl.DragMode"/>
|
||||
|
||||
<element name="TSpeedButton.Enabled" link="#lcl.controls.TControl.Enabled">
|
||||
<descr>
|
||||
<p>Standard properties, which should be supported by all descendants.</p>
|
||||
<p>Whether the control is <var>Enabled</var>. If not, it usually appears 'greyed-out'.</p>
|
||||
<p>Reads a flag to see whether the control is enabled, or stores a new value. If stored, sets a flag to say so.</p>
|
||||
</descr>
|
||||
</element>
|
||||
|
||||
<element name="TSpeedButton.Enabled" link="#lcl.controls.TControl.Enabled"/>
|
||||
<element name="TSpeedButton.Flat" link="#lcl.buttons.TCustomSpeedButton.Flat"/>
|
||||
|
||||
<element name="TSpeedButton.Font" link="#lcl.controls.TControl.Font">
|
||||
<descr>
|
||||
<p>Standard properties, which should be supported by all descendants.</p>
|
||||
<p>Reads a flag to see what font should be used, or sets a flag to store it. If stored, sets a flag to say so.</p>
|
||||
<p>The properties of <var>Font</var> are defined in the parent class <link id="#lcl.Graphics.TFont">TFont</link>.
|
||||
</p>
|
||||
</descr>
|
||||
</element>
|
||||
|
||||
<element name="TSpeedButton.Font" link="#lcl.controls.TControl.Font"/>
|
||||
<element name="TSpeedButton.Glyph" link="#lcl.buttons.TCustomSpeedButton.Glyph"/>
|
||||
<element name="TSpeedButton.GroupIndex" link="#lcl.buttons.TCustomSpeedButton.GroupIndex"/>
|
||||
<element name="TSpeedButton.Images" link="#lcl.buttons.TCustomSpeedButton.Images"/>
|
||||
|
@ -937,23 +937,65 @@
|
||||
</element>
|
||||
|
||||
<element name="TStatusBar.Action" link="#lcl.controls.TControl.Action"/>
|
||||
<element name="TStatusBar.Align" link="#lcl.controls.TControl.Align"/>
|
||||
|
||||
<element name="TStatusBar.Align">
|
||||
<short>Specifies the placement of the control inside its Parent.</short>
|
||||
<descr>
|
||||
<p>
|
||||
Align is a TAlign property which specifies how the control is aligned to its parent control. The default value for the property is alBottom in TStatusBar.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TControl.Align">TControl.Align</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TStatusBar.Anchors" link="#lcl.controls.TControl.Anchors"/>
|
||||
|
||||
<element name="TStatusBar.AutoHint">
|
||||
<short>
|
||||
<var>AutoHint</var> - if True, a hint is automatically shown when mouse hovers over status bar. Default is False.
|
||||
Indicates if a hint is automatically shown when the mouse hovers over the status bar.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is False.
|
||||
</p>
|
||||
</descr>
|
||||
</element>
|
||||
|
||||
<element name="TStatusBar.AutoSize">
|
||||
<short>TStatusBar default is True.</short>
|
||||
<short>
|
||||
Indicates if the control is automatically resized to fill the area on its aligned edge.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is True in TStatusBar.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TControl.AutoSize">TControl.AutoSize</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TStatusBar.BidiMode" link="#lcl.controls.TControl.BiDiMode"/>
|
||||
<element name="TStatusBar.BorderSpacing" link="#lcl.controls.TControl.BorderSpacing"/>
|
||||
<element name="TStatusBar.BorderWidth" link="#lcl.controls.TWinControl.BorderWidth"/>
|
||||
<element name="TStatusBar.Color" link="#lcl.controls.TControl.Color"/>
|
||||
|
||||
<element name="TStatusBar.Color">
|
||||
<short>The background color of the control.</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is clDefault or clBtnFace (depending on the UseCLDefault compiler define).If the color is clDefault , the result will need to be passed through GetDefaultColor to resolve clDefault to an actual TColor value.
|
||||
</p>
|
||||
<p>
|
||||
Convenience routines which obtain the color by resolving clDefault and ParentColor are also provided as TControl.GetColorResolvingParent and TControl.GetRGBColorResolvingParent.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TControl.Color">TControl.Color</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TStatusBar.Constraints" link="#lcl.controls.TControl.Constraints"/>
|
||||
<element name="TStatusBar.DragCursor" link="#lcl.controls.TControl.DragCursor"/>
|
||||
<element name="TStatusBar.DragKind" link="#lcl.controls.TControl.DragKind"/>
|
||||
@ -1040,7 +1082,21 @@
|
||||
<seealso/>
|
||||
</element>
|
||||
|
||||
<element name="TStatusBar.Visible" link="#lcl.controls.TControl.Visible"/>
|
||||
<element name="TStatusBar.Visible">
|
||||
<short>Indicates if the control is visible.</short>
|
||||
<descr>
|
||||
<p>
|
||||
Allows the control, and all of its children, to be displayed or hidden. Visible is set to True by Show , or to False by Hide. Calling these methods is equivalent to setting the Visible property.
|
||||
</p>
|
||||
<p>
|
||||
The default value for the property is True in TStatusBar.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TControl.Visible">TControl.Visible</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TStatusBar.OnClick" link="#lcl.controls.TControl.OnClick"/>
|
||||
<element name="TStatusBar.OnContextPopup" link="#lcl.controls.TControl.OnContextPopup"/>
|
||||
|
||||
@ -3412,13 +3468,16 @@
|
||||
<seealso/>
|
||||
</element>
|
||||
|
||||
<element name="TCustomTabControl.TabStop" link="#lcl.controls.TWinControl.TabStop">
|
||||
<element name="TCustomTabControl.TabStop">
|
||||
<short>Enables or disables navigation using the Tab key.</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is <b>True</b> in <var>TCustomTabControl</var>.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso/>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TWinControl.TabStop">TWinControl.TabStop</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TTabSheet">
|
||||
@ -3545,7 +3604,28 @@
|
||||
<element name="TTabSheet.ParentShowHint" link="#lcl.controls.TControl.ParentShowHint"/>
|
||||
<element name="TTabSheet.PopupMenu" link="#lcl.controls.TControl.PopupMenu"/>
|
||||
<element name="TTabSheet.ShowHint" link="#lcl.controls.TControl.ShowHint"/>
|
||||
<element name="TTabSheet.TabVisible" link="#lcl.comctrls.TCustomPage.TabVisible"/>
|
||||
|
||||
<element name="TTabSheet.TabVisible">
|
||||
<short>Indicates if the tab is visible in the Parent control.</short>
|
||||
<descr>
|
||||
<p>
|
||||
TabVisible indicates if the Tab is visible in the Parent control. The default value for the proprty is True in TTabSheet.
|
||||
</p>
|
||||
<p>
|
||||
Changing the value in the property cause the Parent control to be updated to reflect the new value. No actions are performed in the method at design-time, or when the property value is not different than the stored value.
|
||||
</p>
|
||||
<p>
|
||||
When the Parent control has been assigned and has a handle allocated, the TCustomTabControl in Parent is updated to reflect the new value for the property. When True, the active page in the Parent control is changed to the current page instance if one has not already been assigned in the Parent. The page and its handle are removed from the Tab control when the property value is False.
|
||||
</p>
|
||||
<p>
|
||||
Use IsControlVisible to determine if the page is currently the active page displayed in the Parent tab control.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.comctrls.TCustomPage.TabVisible">TCustomPage.TabVisible</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TTabSheet.Top" link="#lcl.controls.TControl.Top"/>
|
||||
<element name="TTabSheet.Width" link="#lcl.controls.TControl.Width"/>
|
||||
|
||||
@ -5519,7 +5599,7 @@
|
||||
<element name="TTabControl.TabHeight" link="#lcl.comctrls.TCustomTabControl.TabHeight"/>
|
||||
<element name="TTabControl.TabIndex" link="#lcl.comctrls.TCustomTabControl.TabIndex"/>
|
||||
<element name="TTabControl.Tabs" link="#lcl.comctrls.TCustomTabControl.Tabs"/>
|
||||
<element name="TTabControl.TabStop" link="#lcl.controls.TWinControl.TabStop"/>
|
||||
<element name="TTabControl.TabStop" link="#lcl.comctrls.TCustomTabControl.TabStop"/>
|
||||
<element name="TTabControl.TabWidth" link="#lcl.comctrls.TCustomTabControl.TabWidth"/>
|
||||
<element name="TTabControl.Align" link="#lcl.controls.TControl.Align"/>
|
||||
<element name="TTabControl.Anchors" link="#lcl.controls.TControl.Anchors"/>
|
||||
@ -10599,7 +10679,17 @@
|
||||
<seealso/>
|
||||
</element>
|
||||
|
||||
<element name="TCustomListView.BorderStyle" link="#lcl.controls.TWinControl.BorderStyle"/>
|
||||
<element name="TCustomListView.BorderStyle">
|
||||
<short>Line style drawn as a border around the control.</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is bsSingle in TCustomListView.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TWinControl.BorderStyle">TWinControl.BorderStyle</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomListView.Canvas">
|
||||
<short>TCanvas instance used to draw the control.</short>
|
||||
@ -10865,10 +10955,18 @@
|
||||
<seealso/>
|
||||
</element>
|
||||
|
||||
<element name="TCustomListView.TabStop" link="#lcl.controls.TWinControl.TabStop">
|
||||
<short/>
|
||||
<descr/>
|
||||
<seealso/>
|
||||
<element name="TCustomListView.TabStop">
|
||||
<short>
|
||||
Allows the user to navigate to this control, by pressing the Tab key.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is True in TCustomListView,
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TWinControl.TabStop">TWinControl.TabStop</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomListView.TopItem">
|
||||
@ -10926,7 +11024,7 @@
|
||||
<element name="TListView.AutoSortIndicator" link="#lcl.comctrls.TCustomListView.AutoSortIndicator"/>
|
||||
<element name="TListView.AutoWidthLastColumn" link="#lcl.comctrls.TCustomListView.AutoWidthLastColumn"/>
|
||||
<element name="TListView.BorderSpacing" link="#lcl.controls.TControl.BorderSpacing"/>
|
||||
<element name="TListView.BorderStyle" link="#lcl.controls.TWinControl.BorderStyle"/>
|
||||
<element name="TListView.BorderStyle" link="#lcl.comctrls.TCustomListView.BorderStyle"/>
|
||||
<element name="TListView.BorderWidth" link="#lcl.controls.TWinControl.BorderWidth"/>
|
||||
<element name="TListView.Checkboxes" link="#lcl.comctrls.TCustomListView.Checkboxes"/>
|
||||
<element name="TListView.Color" link="#lcl.controls.TControl.Color"/>
|
||||
@ -10947,7 +11045,28 @@
|
||||
<element name="TListView.MultiSelect" link="#lcl.comctrls.TCustomListView.MultiSelect"/>
|
||||
<element name="TListView.OwnerData" link="#lcl.comctrls.TCustomListView.OwnerData"/>
|
||||
<element name="TListView.OwnerDraw" link="#lcl.comctrls.TCustomListView.OwnerDraw"/>
|
||||
<element name="TListView.ParentColor" link="#lcl.controls.TControl.ParentColor"/>
|
||||
|
||||
<element name="TListView.ParentColor">
|
||||
<short>Uses the Color from the Parent control, when enabled.</short>
|
||||
<descr>
|
||||
<p>
|
||||
ParentColor determines if the control should use the Color from the Parent control, when enabled. The default value for the property is False in TListView.
|
||||
</p>
|
||||
<p>
|
||||
When this property is True, all changes to the Color of the parent will also be applied to the Color of the control, ensuring that they both contain same value. If the Color of the control is changed by the application, then ParentColor will be automatically set to False.
|
||||
</p>
|
||||
<p>
|
||||
Using ParentColor when the Color value is clDefault can cause problems in resolving the actual color value. To obtain the Color property of a control while taking into account clDefault and ParentColor, use the GetColorResolvingParent method. This method might return a non-RGB color, but will never return clDefault. To obtain a purely RGB result use the GetRGBColorResolvingParent method.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TControl.ParentColor">TControl.ParentColor</link>
|
||||
<link id="#lcl.controls.TControl.Color">TControl.Color</link>
|
||||
<link id="#lcl.controls.TControl.GetColorResolvingParent">TControl.GetColorResolvingParent</link>
|
||||
<link id="#lcl.controls.TControl.GetRGBColorResolvingParent">TControl.GetRGBColorResolvingParent</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TListView.ParentFont" link="#lcl.controls.TControl.ParentFont"/>
|
||||
<element name="TListView.ParentShowHint" link="#lcl.controls.TControl.ParentShowHint"/>
|
||||
<element name="TListView.PopupMenu" link="#lcl.controls.TControl.PopupMenu"/>
|
||||
@ -14533,7 +14652,18 @@ AToolbar.ButtonHeight := 30;
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TToolBar.Align" link="#lcl.controls.TControl.Align"/>
|
||||
<element name="TToolBar.Align">
|
||||
<short>Specifies the placement of the control inside its Parent.</short>
|
||||
<descr>
|
||||
<p>
|
||||
Align is a TAlign property which specifies how the control is aligned to its parent control. The default value for the property is alTop in TToolBar.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TControl.Align">TControl.Align</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TToolBar.Anchors" link="#lcl.controls.TControl.Anchors"/>
|
||||
<element name="TToolBar.AutoSize" link="#lcl.controls.TControl.AutoSize"/>
|
||||
<element name="TToolBar.BorderSpacing" link="#lcl.controls.TControl.BorderSpacing"/>
|
||||
@ -17150,10 +17280,16 @@ AToolbar.ButtonHeight := 30;
|
||||
<seealso/>
|
||||
</element>
|
||||
|
||||
<element name="TCustomTrackBar.TabStop" link="#lcl.controls.TWinControl.TabStop">
|
||||
<short/>
|
||||
<descr/>
|
||||
<seealso/>
|
||||
<element name="TCustomTrackBar.TabStop">
|
||||
<short>Enables or disables navigatiopn using the Tab key.</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is True in TCustomTrackBar.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TWinControl.TabStop">TWinControl.TabStop</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomTrackBar.TickMarks">
|
||||
@ -17281,7 +17417,7 @@ AToolbar.ButtonHeight := 30;
|
||||
<element name="TTrackBar.ShowHint" link="#lcl.controls.TControl.ShowHint"/>
|
||||
<element name="TTrackBar.ShowSelRange" link="#lcl.comctrls.TCustomTrackBar.ShowSelRange"/>
|
||||
<element name="TTrackBar.TabOrder" link="#lcl.controls.TWinControl.TabOrder"/>
|
||||
<element name="TTrackBar.TabStop" link="#lcl.controls.TWinControl.TabStop"/>
|
||||
<element name="TTrackBar.TabStop" link="#lcl.comctrls.TCustomTrackBar.TabStop"/>
|
||||
<element name="TTrackBar.TickMarks" link="#lcl.comctrls.TCustomTrackBar.TickMarks"/>
|
||||
<element name="TTrackBar.TickStyle" link="#lcl.comctrls.TCustomTrackBar.TickStyle"/>
|
||||
<element name="TTrackBar.Visible" link="#lcl.controls.TControl.Visible"/>
|
||||
@ -22605,7 +22741,17 @@ AToolbar.ButtonHeight := 30;
|
||||
<seealso/>
|
||||
</element>
|
||||
|
||||
<element name="TCustomTreeView.BorderStyle" link="#lcl.controls.TWinControl.BorderStyle"/>
|
||||
<element name="TCustomTreeView.BorderStyle">
|
||||
<short>Line style used to draw the border for the control.</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is bsSingle in TCustomTreeView.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TWinControl.BorderStyle">TWinControl.BorderStyle</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomTreeView.HideSelection">
|
||||
<short>
|
||||
@ -23640,7 +23786,17 @@ AToolbar.ButtonHeight := 30;
|
||||
<seealso/>
|
||||
</element>
|
||||
|
||||
<element name="TCustomTreeView.BorderWidth" link="#lcl.controls.TWinControl.BorderWidth"/>
|
||||
<element name="TCustomTreeView.BorderWidth">
|
||||
<short>Width of the line drawn as a border around the control.</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is 0 in TCustomTreeView.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TWinControl.BorderWidth">TWinControl.BorderWidth</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomTreeView.BottomItem">
|
||||
<short>Last visible tree node starting at the TopItem in the control.</short>
|
||||
@ -23649,13 +23805,15 @@ AToolbar.ButtonHeight := 30;
|
||||
</element>
|
||||
|
||||
<element name="TCustomTreeView.Color">
|
||||
<short>Color used for the control display area.</short>
|
||||
<short>Color used for the background in the control display area.</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is <var>clWindow</var>. Contains the same value as the <var>BackgroundColor</var> property.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso/>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TControl.Color">TControl.Color</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomTreeView.DefaultItemHeight">
|
||||
@ -24031,7 +24189,17 @@ AText := ATreeView.Items.Item[0].Text; // caption for the first tree node
|
||||
<seealso/>
|
||||
</element>
|
||||
|
||||
<element name="TCustomTreeView.TabStop" link="#lcl.controls.TWinControl.TabStop"/>
|
||||
<element name="TCustomTreeView.TabStop">
|
||||
<short>Enables or diables navigation using the Tab key.</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is True in TCustomTreeView.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TWinControl.TabStop">TWinControl.TabStop</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TTreeView">
|
||||
<short>
|
||||
@ -24075,7 +24243,19 @@ AText := ATreeView.Items.Item[0].Text; // caption for the first tree node
|
||||
<element name="TTreeView.Indent" link="#lcl.comctrls.TCustomTreeView.Indent"/>
|
||||
<element name="TTreeView.MultiSelect" link="#lcl.comctrls.TCustomTreeView.MultiSelect"/>
|
||||
<element name="TTreeView.MultiSelectStyle" link="#lcl.comctrls.TCustomTreeView.MultiSelectStyle"/>
|
||||
<element name="TTreeView.ParentColor" link="#lcl.controls.TControl.ParentColor"/>
|
||||
|
||||
<element name="TTreeView.ParentColor">
|
||||
<short/>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is False in TTreeView.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TControl.ParentColor">TControl.ParentColor</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TTreeView.ParentFont" link="#lcl.controls.TControl.ParentFont"/>
|
||||
<element name="TTreeView.ParentShowHint" link="#lcl.controls.TControl.ParentShowHint"/>
|
||||
<element name="TTreeView.PopupMenu" link="#lcl.controls.TControl.PopupMenu"/>
|
||||
@ -24095,7 +24275,19 @@ AText := ATreeView.Items.Item[0].Text; // caption for the first tree node
|
||||
<element name="TTreeView.StateImages" link="#lcl.comctrls.TCustomTreeView.StateImages"/>
|
||||
<element name="TTreeView.StateImagesWidth" link="#lcl.comctrls.TCustomTreeView.StateImagesWidth"/>
|
||||
<element name="TTreeView.TabOrder" link="#lcl.controls.TWinControl.TabOrder"/>
|
||||
<element name="TTreeView.TabStop" link="#lcl.controls.TWinControl.TabStop"/>
|
||||
|
||||
<element name="TTreeView.TabStop">
|
||||
<short>Enables or disables navigation using the Tab key.</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is True in TTreeView.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TWinControl.TabStop">TWinControl.TabStop</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TTreeView.Tag" link="#rtl.classes.TComponent.Tag"/>
|
||||
<element name="TTreeView.ToolTips" link="#lcl.comctrls.TCustomTreeView.ToolTips"/>
|
||||
<element name="TTreeView.Visible" link="#lcl.controls.TControl.Visible"/>
|
||||
|
@ -4873,7 +4873,24 @@
|
||||
<element link="#lcl.stdctrls.TCustomComboBox.ItemHeight" name="TDBComboBox.ItemHeight"/>
|
||||
<element link="#lcl.stdctrls.TCustomComboBox.Items" name="TDBComboBox.Items"/>
|
||||
<element link="#lcl.stdctrls.TCustomComboBox.ItemWidth" name="TDBComboBox.ItemWidth"/>
|
||||
<element link="#lcl.stdctrls.TCustomComboBox.MaxLength" name="TDBComboBox.MaxLength"/>
|
||||
|
||||
<element name="TDBComboBox.MaxLength">
|
||||
<short>
|
||||
The maximum length for text entered in the edit box for the control.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
MaxLength is an Integer property which contains the maximum length for a value entered in the Text for the control. It controls the number of characters allowed in the edit box, but does not limit the length of the value that can be directly assigned to Text. MaxLength is passed to and read from the widgetset class when a handle has been assigned for the control.
|
||||
</p>
|
||||
<p>
|
||||
The default value for the property is -1 in TDBComboBox, and forces the widgetset class to update its value for the property. Setting the value for the property does not alter the existing value in Text.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.stdctrls.TCustomComboBox.MaxLength">TCustomComboBox.MaxLength</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element link="#lcl.stdctrls.TCustomComboBox.OnChange" name="TDBComboBox.OnChange"/>
|
||||
<element link="#lcl.controls.TControl.OnChangeBounds" name="TDBComboBox.OnChangeBounds"/>
|
||||
<element link="#lcl.controls.TControl.OnClick" name="TDBComboBox.OnClick">
|
||||
@ -8100,7 +8117,7 @@
|
||||
<link id="TDBCustomNavigator"/>
|
||||
</seealso>
|
||||
</element>
|
||||
<element link="#lcl.controls.TControl.Align" name="TDBNavigator.Align"/>
|
||||
<element link="#lcl.extctrls.TCustomPanel.Align" name="TDBNavigator.Align"/>
|
||||
<element link="#lcl.extctrls.TCustomPanel.Alignment" name="TDBNavigator.Alignment"/>
|
||||
<element link="#lcl.controls.TControl.Anchors" name="TDBNavigator.Anchors"/>
|
||||
<element link="#lcl.controls.TControl.AutoSize" name="TDBNavigator.AutoSize"/>
|
||||
@ -8116,7 +8133,27 @@
|
||||
<element link="#lcl.controls.TWinControl.ChildSizing" name="TDBNavigator.ChildSizing"/>
|
||||
<element link="#lcl.controls.TControl.ClientHeight" name="TDBNavigator.ClientHeight"/>
|
||||
<element link="#lcl.controls.TControl.ClientWidth" name="TDBNavigator.ClientWidth"/>
|
||||
<element link="#lcl.controls.TControl.Color" name="TDBNavigator.Color"/>
|
||||
|
||||
<element name="TDBNavigator.Color">
|
||||
<short>Contains the background color for the control.</short>
|
||||
<descr>
|
||||
<p>
|
||||
Color is a TColor property with the background color for the control.
|
||||
The default value for the property is clBackground in TDBNavigator.
|
||||
</p>
|
||||
<p>
|
||||
If the color is clDefault, the value will need to be resolved using the GetDefaultColor method. Convenience routines which obtain the color by resolving clDefault and ParentColor are also provided in TControl.GetColorResolvingParent and TControl.GetRGBColorResolvingParent.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.extctrls.TCustomPanel.Color">TCustomPanel.Color</link>
|
||||
<link id="#lcl.controls.TControl.ParentColor">TControl.ParentColor</link>
|
||||
<link id="#lcl.controls.TControl.GetDefaultColor">TControl.GetDefaultColor</link>
|
||||
<link id="#lcl.controls.TControl.GetColorResolvingParent">TControl.GetColorResolvingParent</link>
|
||||
<link id="#lcl.controls.TControl.GetRGBColorResolvingParent">TControl.GetRGBColorResolvingParent</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element link="#lcl.controls.TControl.Constraints" name="TDBNavigator.Constraints"/>
|
||||
<element link="#lcl.dbctrls.TDBCustomNavigator.ConfirmDelete" name="TDBNavigator.ConfirmDelete"/>
|
||||
<element link="#lcl.dbctrls.TDBCustomNavigator.DataSource" name="TDBNavigator.DataSource"/>
|
||||
@ -8157,7 +8194,19 @@
|
||||
<element link="#lcl.controls.TControl.PopupMenu" name="TDBNavigator.PopupMenu"/>
|
||||
<element link="#lcl.controls.TControl.ShowHint" name="TDBNavigator.ShowHint"/>
|
||||
<element link="#lcl.controls.TWinControl.TabOrder" name="TDBNavigator.TabOrder"/>
|
||||
<element link="#lcl.controls.TWinControl.TabStop" name="TDBNavigator.TabStop"/>
|
||||
|
||||
<element name="TDBNavigator.TabStop">
|
||||
<short>Enables or disables navigation using the Tab key.</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is False in TDBNavigator.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.extctrls.TCustomPanel.TabStop">TCustomPanel.TabStop</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element link="#lcl.controls.TControl.Visible" name="TDBNavigator.Visible"/>
|
||||
<element link="#lcl.dbctrls.TDBCustomNavigator.VisibleButtons" name="TDBNavigator.VisibleButtons"/>
|
||||
<element link="#lcl.dbctrls.TDBCustomNavigator.Images" name="TDBNavigator.Images"/>
|
||||
|
@ -5887,12 +5887,50 @@
|
||||
<element name="TDBGrid.Options2" link="#lcl.grids.TCustomGrid.Options2"/>
|
||||
<element name="TDBGrid.OptionsExtra" link="#lcl.dbgrids.TCustomDBGrid.OptionsExtra"/>
|
||||
<element name="TDBGrid.ParentBiDiMode" link="#lcl.controls.TControl.ParentBiDiMode"/>
|
||||
<element name="TDBGrid.ParentColor" link="#lcl.controls.TControl.ParentColor"/>
|
||||
|
||||
<element name="TDBGrid.ParentColor">
|
||||
<short>
|
||||
Uses the Color from the Parent control, when enabled.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
ParentColor determines if the control should use the Color from the Parent control, when enabled. The default value for the property is False in TDBGrid.
|
||||
</p>
|
||||
<p>
|
||||
When this property is True, all changes to the Color of the parent will also be applied to the Color of the control, ensuring that they both contain same value. If the Color of the control is changed by the application, then ParentColor will be automatically set to False.
|
||||
</p>
|
||||
<p>
|
||||
Using ParentColor when the Color value is clDefault can cause problems in resolving the actual color value. To obtain the Color property of a control while taking into account clDefault and ParentColor, use the GetColorResolvingParent method. This method might return a non-RGB color, but will never return clDefault. To obtain a purely RGB result use the GetRGBColorResolvingParent method.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TControl.ParentColor">TControl.ParentColor</link>
|
||||
<link id="#lcl.controls.TControl.Color">TControl.Color</link>
|
||||
<link id="#lcl.controls.TControl.GetColorResolvingParent">TControl.GetColorResolvingParent</link>
|
||||
<link id="#lcl.controls.TControl.GetRGBColorResolvingParent">TControl.GetRGBCGetRGBColorResolvingParentParent</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TDBGrid.ParentDoubleBuffered" link="#lcl.controls.TWinControl.ParentDoubleBuffered"/>
|
||||
<element name="TDBGrid.ParentFont" link="#lcl.controls.TControl.ParentFont"/>
|
||||
<element name="TDBGrid.PopupMenu" link="#lcl.controls.TControl.PopupMenu"/>
|
||||
<element name="TDBGrid.ReadOnly" link="#lcl.dbgrids.TCustomDBGrid.ReadOnly"/>
|
||||
<element name="TDBGrid.Scrollbars" link="#lcl.grids.TCustomGrid.ScrollBars"/>
|
||||
|
||||
<element name="TDBGrid.Scrollbars">
|
||||
<short>Scrollbars displayed for the grid control.</short>
|
||||
<descr>
|
||||
<p>
|
||||
ScrollBars is a TScrollStyle property which indicates the scrollbars displayed for the grid control. The default value for the property is ssBoth in TDBGrid, and causes vertical and horizontal scrollbars to be displayed.
|
||||
</p>
|
||||
<p>
|
||||
See TScrollStyle for more information about values in the enumeration and their meanings.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.grids.TCustomGrid.ScrollBars">TCustomGrid.ScrollBars</link>
|
||||
<link id="#lcl.stdctrls.TScrollStyle">TScrollStyle</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TDBGrid.ShowHint">
|
||||
<short>Controls whether the <var>Hint</var> is displayed for the control.</short>
|
||||
|
@ -581,10 +581,14 @@
|
||||
|
||||
<element name="TCustomEditButton.Spacing">
|
||||
<short>
|
||||
Specifies the amount of space reserved between the Edit and Button controls when Button is visible.
|
||||
Specifies the number of pixels reserved between the Edit and Button controls when Button is visible.
|
||||
</short>
|
||||
<descr></descr>
|
||||
<seealso></seealso>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is 4 in TCustomEditButton.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso/>
|
||||
</element>
|
||||
|
||||
<element name="TCustomEditButton.OnButtonClick">
|
||||
@ -645,7 +649,21 @@
|
||||
<element name="TEditButton.NumbersOnly" link="#lcl.groupededit.TCustomAbstractGroupedEdit.NumbersOnly"/>
|
||||
<element name="TEditButton.Action" link="#lcl.controls.TControl.Action"/>
|
||||
<element name="TEditButton.AutoSelect" link="#lcl.stdctrls.TCustomEdit.AutoSelect"/>
|
||||
<element name="TEditButton.AutoSize" link="#lcl.controls.TControl.AutoSize"/>
|
||||
|
||||
<element name="TEditButton.AutoSize">
|
||||
<short>
|
||||
Enables automatic adjustment of the size for the control, according to its content.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
AutoSize is a Boolean property which allows the control to automatically adjustment its size to the content in the control. The default value for the property is True in TEditButton.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.groupededit.TCustomAbstractGroupedEdit.AutoSize">TCustomAbstractGroupedEdit.AutoSize</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TEditButton.Align" link="#lcl.controls.TControl.Align"/>
|
||||
<element name="TEditButton.Alignment" link="#lcl.groupededit.TCustomAbstractGroupedEdit.Alignment"/>
|
||||
<element name="TEditButton.Anchors" link="#lcl.controls.TControl.Anchors"/>
|
||||
@ -669,7 +687,7 @@
|
||||
<element name="TEditButton.ButtonHint" link="#lcl.editbtn.TCustomEditButton.ButtonHint"/>
|
||||
<element name="TEditButton.ButtonOnlyWhenFocused" link="#lcl.editbtn.TCustomEditButton.ButtonOnlyWhenFocused"/>
|
||||
<element name="TEditButton.ButtonWidth" link="#lcl.editbtn.TCustomEditButton.ButtonWidth"/>
|
||||
<element name="TEditButton.CharCase" link="#lcl.stdctrls.TCustomEdit.CharCase"/>
|
||||
<element name="TEditButton.CharCase" link="#lcl.groupededit.TCustomAbstractGroupedEdit.CharCase"/>
|
||||
<element name="TEditButton.Color" link="#lcl.controls.TControl.Color"/>
|
||||
<element name="TEditButton.Constraints" link="#lcl.controls.TControl.Constraints"/>
|
||||
<element name="TEditButton.Cursor" link="#lcl.controls.TControl.Cursor"/>
|
||||
@ -1300,7 +1318,23 @@
|
||||
</short>
|
||||
</element>
|
||||
|
||||
<element name="TCustomControlFilterEdit.CharCase" link="#lcl.groupededit.TCustomAbstractGroupedEdit.CharCase"/>
|
||||
<element name="TCustomControlFilterEdit.CharCase">
|
||||
<short>
|
||||
Controls case conversion performed for a value entered in the control.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
CharCase is a TEditCharCase property that controls the case conversion used (if any) for a value entered in the control. The default value for the property is ecLowerCase in TCustomControlFilterEdit, and indicates that charcters are converted to lower case.
|
||||
</p>
|
||||
<p>
|
||||
See TEditCharCase for more information about the enumeration values supported for the type.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.groupededit.TCustomAbstractGroupedEdit.CharCase">TCustomAbstractGroupedEdit.CharCase</link>
|
||||
<link id="#lcl.stdctrls.TEditCharCase">TEditCharCase</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomControlFilterEdit.FilterOptions">
|
||||
<short>
|
||||
|
@ -1932,14 +1932,16 @@
|
||||
<short>Current position for the splitter.</short>
|
||||
</element>
|
||||
|
||||
<element name="TCustomSplitter.Align" link="#lcl.controls.TControl.Align">
|
||||
<short/>
|
||||
<element name="TCustomSplitter.Align">
|
||||
<short>Specifies the placement of the control inside its Parent.</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is <var>alLeft</var>.
|
||||
Align is a TAlign property which specifies how the control is aligned to its parent control. The default value for the property is <var>alLeft</var> in TCustomSplitter.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso/>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TControl.Align">TControl.Align</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomSplitter.AutoSnap">
|
||||
@ -1959,14 +1961,18 @@
|
||||
<seealso/>
|
||||
</element>
|
||||
|
||||
<element name="TCustomSplitter.Cursor" link="#lcl.controls.TControl.Cursor">
|
||||
<short/>
|
||||
<element name="TCustomSplitter.Cursor">
|
||||
<short>
|
||||
The shape for the mouse pointer when the control is dragged.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is <var>crHSplit</var>.
|
||||
The default value for the property is <var>crHSplit</var> in TCustomSplitter.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso/>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TControl.Cursor">TControl.Cursor</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomSplitter.MinSize">
|
||||
@ -2033,7 +2039,7 @@
|
||||
<element name="TSplitter.Beveled" link="#lcl.extctrls.TCustomSplitter.Beveled"/>
|
||||
<element name="TSplitter.Color" link="#lcl.controls.TControl.Color"/>
|
||||
<element name="TSplitter.Constraints" link="#lcl.controls.TControl.Constraints"/>
|
||||
<element name="TSplitter.Cursor" link="#lcl.controls.TControl.Cursor"/>
|
||||
<element name="TSplitter.Cursor" link="#lcl.extctrls.TCustomSplitter.Cursor"/>
|
||||
<element name="TSplitter.DoubleBuffered" link="#lcl.controls.TWinControl.DoubleBuffered"/>
|
||||
<element name="TSplitter.Height" link="#lcl.controls.TControl.Height"/>
|
||||
<element name="TSplitter.MinSize" link="#lcl.extctrls.TCustomSplitter.MinSize"/>
|
||||
@ -2709,21 +2715,13 @@
|
||||
|
||||
<element name="TImage.KeepOriginXWhenClipped" link="#lcl.extctrls.TCustomImage.KeepOriginXWhenClipped">
|
||||
<short/>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is <b>False</b>.
|
||||
</p>
|
||||
</descr>
|
||||
<descr/>
|
||||
<seealso/>
|
||||
</element>
|
||||
|
||||
<element name="TImage.KeepOriginYWhenClipped" link="#lcl.extctrls.TCustomImage.KeepOriginYWhenClipped">
|
||||
<short/>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is <b>False</b>.
|
||||
</p>
|
||||
</descr>
|
||||
<descr/>
|
||||
<seealso/>
|
||||
</element>
|
||||
|
||||
@ -5264,7 +5262,17 @@
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomPanel.TabStop" link="#lcl.controls.TWinControl.TabStop"/>
|
||||
<element name="TCustomPanel.TabStop">
|
||||
<short>Enables or disables navigation using the Tab key.</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is False in TCustomPanel.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TWinControl.TabStop">TWinControl.TabStop</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TPanel">
|
||||
<short>
|
||||
@ -5280,7 +5288,7 @@
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TPanel.Align" link="#lcl.controls.TControl.Align"/>
|
||||
<element name="TPanel.Align" link="#lcl.extctrls.TCustomPanel.Align"/>
|
||||
<element name="TPanel.Alignment" link="#lcl.extctrls.TCustomPanel.Alignment"/>
|
||||
<element name="TPanel.Anchors" link="#lcl.controls.TControl.Anchors"/>
|
||||
<element name="TPanel.AutoSize" link="#lcl.controls.TControl.AutoSize"/>
|
||||
@ -5296,7 +5304,7 @@
|
||||
<element name="TPanel.ChildSizing" link="#lcl.controls.TWinControl.ChildSizing"/>
|
||||
<element name="TPanel.ClientHeight" link="#lcl.controls.TControl.ClientHeight"/>
|
||||
<element name="TPanel.ClientWidth" link="#lcl.controls.TControl.ClientWidth"/>
|
||||
<element name="TPanel.Color" link="#lcl.controls.TControl.Color"/>
|
||||
<element name="TPanel.Color" link="#lcl.extctrls.TCustomPanel.Color"/>
|
||||
<element name="TPanel.Constraints" link="#lcl.controls.TControl.Constraints"/>
|
||||
<element name="TPanel.DockSite" link="#lcl.controls.TWinControl.DockSite"/>
|
||||
<element name="TPanel.DoubleBuffered" link="#lcl.controls.TWinControl.DoubleBuffered"/>
|
||||
@ -5308,15 +5316,30 @@
|
||||
<element name="TPanel.FullRepaint" link="#lcl.extctrls.TCustomPanel.FullRepaint"/>
|
||||
<element name="TPanel.ParentBackground" link="#lcl.extctrls.TCustomPanel.ParentBackground"/>
|
||||
<element name="TPanel.ParentBiDiMode" link="#lcl.controls.TControl.ParentBiDiMode"/>
|
||||
<element name="TPanel.ParentColor" link="#lcl.controls.TControl.ParentColor"/>
|
||||
<element name="TPanel.ParentColor" link="#lcl.extctrls.TCustomPanel.ParentColor"/>
|
||||
<element name="TPanel.ParentDoubleBuffered" link="#lcl.controls.TWinControl.ParentDoubleBuffered"/>
|
||||
<element name="TPanel.ParentFont" link="#lcl.controls.TControl.ParentFont"/>
|
||||
<element name="TPanel.ParentShowHint" link="#lcl.controls.TControl.ParentShowHint"/>
|
||||
<element name="TPanel.PopupMenu" link="#lcl.controls.TControl.PopupMenu"/>
|
||||
<element name="TPanel.ShowHint" link="#lcl.controls.TControl.ShowHint"/>
|
||||
<element name="TPanel.TabOrder" link="#lcl.controls.TWinControl.TabOrder"/>
|
||||
<element name="TPanel.TabStop" link="#lcl.controls.TWinControl.TabStop"/>
|
||||
<element name="TPanel.UseDockManager" link="#lcl.controls.TWinControl.UseDockManager"/>
|
||||
<element name="TPanel.TabStop" link="#lcl.extctrls.TCustomPanel.TabStop"/>
|
||||
|
||||
<element name="TPanel.UseDockManager">
|
||||
<short>Determines whether a DockManager is used for this DockSite.</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is True in TPanel.
|
||||
</p>
|
||||
<p>
|
||||
When UseDockManager is set to True, and DockSite is also set to True, a DockManager is created automatically. When set to False, an existing DockManager is ignored. If you want to use a special DockManager, install it before setting UseDockManager to True.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TWinControl.UseDockManager">TWinControl.UseDockManager</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TPanel.Visible" link="#lcl.controls.TControl.Visible"/>
|
||||
<element name="TPanel.WordWrap" link="#lcl.extctrls.TCustomPanel.WordWrap"/>
|
||||
<element name="TPanel.OnClick" link="#lcl.controls.TControl.OnClick"/>
|
||||
@ -5879,6 +5902,11 @@
|
||||
|
||||
<element name="TCustomFlowPanel.AutoWrap">
|
||||
<short>Determines if controls in TCustomFlowPanel are wrapped.</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is True in TFlowPanel.
|
||||
</p>
|
||||
</descr>
|
||||
</element>
|
||||
|
||||
<element name="TCustomFlowPanel.ControlList">
|
||||
@ -5913,7 +5941,21 @@
|
||||
<element name="TFlowPanel.Alignment" link="#lcl.extctrls.TCustomPanel.Alignment"/>
|
||||
<element name="TFlowPanel.Anchors" link="#lcl.controls.TControl.Anchors"/>
|
||||
<element name="TFlowPanel.AutoSize" link="#lcl.controls.TControl.AutoSize"/>
|
||||
<element name="TFlowPanel.AutoWrap" link="#lcl.extctrls.TCustomFlowPanel.AutoWrap"/>
|
||||
|
||||
<element name="TFlowPanel.AutoWrap">
|
||||
<short>
|
||||
Determines if child controls are automatically wrapped when needed.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is True in TFlowPanel.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.extctrls.TCustomFlowPanel.AutoWrap"/>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TFlowPanel.BevelInner" link="#lcl.extctrls.TCustomPanel.BevelInner"/>
|
||||
<element name="TFlowPanel.BevelOuter" link="#lcl.extctrls.TCustomPanel.BevelOuter"/>
|
||||
<element name="TFlowPanel.BevelWidth" link="#lcl.extctrls.TCustomPanel.BevelWidth"/>
|
||||
@ -5925,7 +5967,22 @@
|
||||
<element name="TFlowPanel.Color" link="#lcl.extctrls.TCustomPanel.Color"/>
|
||||
<element name="TFlowPanel.Constraints" link="#lcl.controls.TControl.Constraints"/>
|
||||
<element name="TFlowPanel.ControlList" link="#lcl.extctrls.TCustomFlowPanel.ControlList"/>
|
||||
<element name="TFlowPanel.UseDockManager" link="#lcl.controls.TWinControl.UseDockManager"/>
|
||||
|
||||
<element name="TFlowPanel.UseDockManager">
|
||||
<short>Determines whether a DockManager is used for this DockSite.</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is True in TFlowPanel.
|
||||
</p>
|
||||
<p>
|
||||
When UseDockManager is set to True, and DockSite is also set to True, a DockManager is created automatically. When set to False, an existing DockManager is ignored. If you want to use a special DockManager, install it before setting UseDockManager to True.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TWinControl.UseDockManager">TWinControl.UseDockManager</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TFlowPanel.DockSite" link="#lcl.controls.TWinControl.DockSite"/>
|
||||
<element name="TFlowPanel.DoubleBuffered" link="#lcl.controls.TWinControl.DoubleBuffered"/>
|
||||
<element name="TFlowPanel.DragCursor" link="#lcl.controls.TControl.DragCursor"/>
|
||||
@ -7857,7 +7914,19 @@
|
||||
<seealso/>
|
||||
</element>
|
||||
|
||||
<element name="TCustomControlBar.DockSite" link="#lcl.controls.TWinControl.DockSite"/>
|
||||
<element name="TCustomControlBar.DockSite">
|
||||
<short>
|
||||
Allows drag-docking of controls onto this control.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
A DockSite reacts on controls dragged over this control, signals acceptance and where a dragged control would be dropped. The default value for the property is True in TCustomControlBar.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TWinControl.DockSite">TWinControl.DockSite</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomControlBar.DrawingStyle">
|
||||
<short>Fill style used for bands on the control bar.</short>
|
||||
@ -8019,19 +8088,42 @@
|
||||
</element>
|
||||
|
||||
<element name="TControlBar.Canvas" link="#lcl.controls.TCustomControl.Canvas"/>
|
||||
<element name="TControlBar.Align" link="#lcl.controls.TControl.Align"/>
|
||||
<element name="TControlBar.Align" link="#lcl.extctrls.TCustomPanel.Align"/>
|
||||
<element name="TControlBar.Anchors" link="#lcl.controls.TControl.Anchors"/>
|
||||
<element name="TControlBar.AutoDock" link="#lcl.extctrls.TCustomControlBar.AutoDock"/>
|
||||
<element name="TControlBar.AutoDrag" link="#lcl.extctrls.TCustomControlBar.AutoDrag"/>
|
||||
<element name="TControlBar.AutoSize" link="#lcl.extctrls.TCustomControlBar.AutoSize"/>
|
||||
<element name="TControlBar.BevelInner" link="#lcl.extctrls.TCustomPanel.BevelInner"/>
|
||||
<element name="TControlBar.BevelOuter" link="#lcl.extctrls.TCustomPanel.BevelOuter"/>
|
||||
|
||||
<element name="TControlBar.BevelInner">
|
||||
<short>Drawing style for the inner bevel on the control.</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is bvRaised in TControlBar.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.extctrls.TCustomPanel.BevelInner">TCustomPanel.BevelInner</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TControlBar.BevelOuter">
|
||||
<short>Drawing style for the outer bevel on the control.</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is bvLowered in TControlBar.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.extctrls.TCustomPanel.BevelOuter">TCustomPanel.BevelOuter</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TControlBar.BevelWidth" link="#lcl.extctrls.TCustomPanel.BevelWidth"/>
|
||||
<element name="TControlBar.BiDiMode" link="#lcl.controls.TControl.BiDiMode"/>
|
||||
<element name="TControlBar.BorderWidth" link="#lcl.controls.TWinControl.BorderWidth"/>
|
||||
<element name="TControlBar.Color" link="#lcl.extctrls.TCustomPanel.Color"/>
|
||||
<element name="TControlBar.Constraints" link="#lcl.controls.TControl.Constraints"/>
|
||||
<element name="TControlBar.DockSite" link="#lcl.controls.TWinControl.DockSite"/>
|
||||
<element name="TControlBar.DockSite" link="#lcl.extctrls.TCustomControlBar.DockSite"/>
|
||||
<element name="TControlBar.DoubleBuffered" link="#lcl.controls.TWinControl.DoubleBuffered"/>
|
||||
<element name="TControlBar.DragCursor" link="#lcl.controls.TControl.DragCursor"/>
|
||||
<element name="TControlBar.DragKind" link="#lcl.controls.TControl.DragKind"/>
|
||||
|
@ -644,7 +644,7 @@
|
||||
<element name="TFileListBox.ParentFont" link="#lcl.controls.TControl.ParentFont"/>
|
||||
<element name="TFileListBox.PopupMenu" link="#lcl.controls.TControl.PopupMenu"/>
|
||||
<element name="TFileListBox.ShowHint" link="#lcl.controls.TControl.ShowHint"/>
|
||||
<element name="TFileListBox.Sorted" link="#lcl.stdctrls.TCustomListBox.Sorted"/>
|
||||
<element name="TFileListBox.Sorted" link="#lcl.TCustomFileListBox.Sorted"/>
|
||||
<element name="TFileListBox.Style" link="#lcl.stdctrls.TCustomListBox.Style"/>
|
||||
<element name="TFileListBox.TabOrder" link="#lcl.controls.TWinControl.TabOrder"/>
|
||||
<element name="TFileListBox.TabStop" link="#lcl.controls.TWinControl.TabStop"/>
|
||||
|
@ -1418,10 +1418,42 @@
|
||||
<element name="TScrollBox.Align" link="#lcl.controls.TControl.Align"/>
|
||||
<element name="TScrollBox.Anchors" link="#lcl.controls.TControl.Anchors"/>
|
||||
<element name="TScrollBox.AutoSize" link="#lcl.controls.TControl.AutoSize"/>
|
||||
<element name="TScrollBox.AutoScroll" link="#lcl.forms.TScrollingWinControl.AutoScroll"/>
|
||||
|
||||
<element name="TScrollBox.AutoScroll">
|
||||
<short>
|
||||
Indicates whether scroll bars are automatically displayed or hidden when needed.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
AutoScroll is a Boolean property which indicates if scroll bars are automatically displayed or hidden on the control as needed. The default value for the property is True in TScrollBox.
|
||||
</p>
|
||||
<p>
|
||||
Changing the value for the property causes the Visible property in both HorzScrollBar and VertScrollBar to be updated (if needed). When set to True, the UpdateScrollBars method is called to calculate the page, range, and visibiity for the scroll bars. When set to False , the HideScrollbars method is called to reset and hide the scroll bars (when assigned).
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.forms.TScrollingWinControl.AutoScroll">TScrollingWinControl.AutoScroll</link>
|
||||
<link id="#lcl.forms.TScrollingWinControl.UpdateScrollbars">TScrollingWinControl.UpdateScrollbars</link>
|
||||
<link id="#lcl.forms.TScrollingWinControl.HorzScrollBar">TScrollingWinControl.HorzScrollBar</link>
|
||||
<link id="#lcl.forms.TScrollingWinControl.VertScrollBar">TScrollingWinControl.VertScrollBar</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TScrollBox.BorderSpacing" link="#lcl.controls.TControl.BorderSpacing"/>
|
||||
<element name="TScrollBox.BiDiMode" link="#lcl.controls.TControl.BiDiMode"/>
|
||||
<element name="TScrollBox.BorderStyle" link="#lcl.controls.TWinControl.BorderStyle"/>
|
||||
|
||||
<element name="TScrollBox.BorderStyle">
|
||||
<short>Line style used to draw the border around the control.</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is bsSingle in TScrollBox.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TWinControl.BorderStyle">TWinControl.BorderStyle</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TScrollBox.ChildSizing" link="#lcl.controls.TWinControl.ChildSizing"/>
|
||||
<element name="TScrollBox.ClientHeight" link="#lcl.controls.TControl.ClientHeight"/>
|
||||
<element name="TScrollBox.ClientWidth" link="#lcl.controls.TControl.ClientWidth"/>
|
||||
@ -1433,7 +1465,28 @@
|
||||
<element name="TScrollBox.Enabled" link="#lcl.controls.TControl.Enabled"/>
|
||||
<element name="TScrollBox.Color" link="#lcl.controls.TControl.Color"/>
|
||||
<element name="TScrollBox.Font" link="#lcl.controls.TControl.Font"/>
|
||||
<element name="TScrollBox.ParentBackground" link="#lcl.controls.TWinControl.ParentBackground"/>
|
||||
|
||||
<element name="TScrollBox.ParentBackground">
|
||||
<short>
|
||||
Indicates if the control uses the background from its Parent control.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
ParentBackground is a Boolean property which indicates if the background for the Parent control is drawn as the background for the current control instance. The default value in TScrollBox is False.
|
||||
</p>
|
||||
<p>
|
||||
ParentBackground is True when csParentBackground is included in the ControlStyle property. Setting the value in ParentBackground causes ControlStyle to be updated to include or exclude the csParentBackground enumeration value; it is included when True.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TWinControl.ParentBackground">TWinControl.ParentBackground</link>
|
||||
<link id="#lcl.controls.TControl.ControlStyle">TControl.ControlStyle</link>
|
||||
<link id="#lcl.controls.TControl.Parent">TControl.Parent</link>
|
||||
<link id="#lcl.controls.TControlStyle">TControlStyle</link>
|
||||
<link id="#lcl.controls.TControlStyleType">TControlStyleType</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TScrollBox.ParentBiDiMode" link="#lcl.controls.TControl.ParentBiDiMode"/>
|
||||
<element name="TScrollBox.ParentColor" link="#lcl.controls.TControl.ParentColor"/>
|
||||
<element name="TScrollBox.ParentFont" link="#lcl.controls.TControl.ParentFont"/>
|
||||
@ -1907,7 +1960,7 @@
|
||||
<short/>
|
||||
</element>
|
||||
|
||||
<element name="TCustomFrame.ParentBackground" link="#lcl.controls.TWinControl.ParentBackground">
|
||||
<element name="TCustomFrame.ParentBackground">
|
||||
<short>Indicates if the control uses the background from the parent.</short>
|
||||
<descr>
|
||||
<p>
|
||||
@ -4963,7 +5016,7 @@
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomForm.Color" link="#lcl.controls.TControl.Color">
|
||||
<element name="TCustomForm.Color">
|
||||
<short>The background color for the form.</short>
|
||||
<descr>
|
||||
<var>Color</var> is a <var>TColor</var> property with the background color used for the form. Color is re-declared in <var>TCustomForm</var> to use either <var>clDefault</var> or <var>clBtnFace</var> as the default value for the property. clDefault is used when the <var>UseCLDefault</var> compiler define exists, and indicates that the color is resolved to the value in a <var>Parent</var> control (when assigned).
|
||||
@ -5529,12 +5582,18 @@
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomForm.ParentFont" link="#lcl.controls.TControl.ParentFont">
|
||||
<short/>
|
||||
<element name="TCustomForm.ParentFont">
|
||||
<short>
|
||||
Uses the font from the Parent when enabled.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
If true, the Font will be the same as the one from the Parent.
|
||||
The default value for the property is <b>False</b> in <var>TCustomForm</var>.
|
||||
</p>
|
||||
<p>
|
||||
While ParentFont is True, all changes to the font of the parent will also be applied to the font for the control. This synchronizes them, keeping them set to the same value. If the Font for the control is changed by the application, then ParentFont will automatically be set to False.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TControl.ParentFont">TControl.ParentFont</link>
|
||||
@ -5832,7 +5891,7 @@
|
||||
<element name="TForm.ChildSizing" link="#lcl.controls.TWinControl.ChildSizing"/>
|
||||
<element name="TForm.ClientHeight" link="#lcl.controls.TControl.ClientHeight"/>
|
||||
<element name="TForm.ClientWidth" link="#lcl.controls.TControl.ClientWidth"/>
|
||||
<element name="TForm.Color" link="#lcl.controls.TControl.Color"/>
|
||||
<element name="TForm.Color" link="#lcl.forms.TCustomForm.Color"/>
|
||||
<element name="TForm.Constraints" link="#lcl.controls.TControl.Constraints"/>
|
||||
<element name="TForm.DefaultMonitor" link="#lcl.forms.TCustomForm.DefaultMonitor"/>
|
||||
<element name="TForm.DesignTimePPI" link="#lcl.forms.TCustomDesignControl.DesignTimePPI"/>
|
||||
@ -5892,7 +5951,7 @@
|
||||
<element name="TForm.OnWindowStateChange" link="#lcl.forms.TCustomForm.OnWindowStateChange"/>
|
||||
<element name="TForm.ParentBiDiMode" link="#lcl.controls.TControl.ParentBiDiMode"/>
|
||||
<element name="TForm.ParentDoubleBuffered" link="#lcl.controls.TWinControl.ParentDoubleBuffered"/>
|
||||
<element name="TForm.ParentFont" link="#lcl.controls.TControl.ParentFont"/>
|
||||
<element name="TForm.ParentFont" link="#lcl.forms.TCustomForm.ParentFont"/>
|
||||
<element name="TForm.PixelsPerInch" link="#lcl.forms.TCustomDesignControl.PixelsPerInch"/>
|
||||
<element name="TForm.PopupMenu" link="#lcl.controls.TControl.PopupMenu"/>
|
||||
<element name="TForm.PopupMode" link="#lcl.forms.TCustomForm.PopupMode"/>
|
||||
@ -6006,9 +6065,57 @@
|
||||
<short>Owner for the class instance.</short>
|
||||
</element>
|
||||
|
||||
<element name="TCustomDockForm.AutoScroll" link="#lcl.forms.TCustomForm.AutoScroll"/>
|
||||
<element name="TCustomDockForm.BorderStyle" link="#lcl.forms.TCustomForm.BorderStyle"/>
|
||||
<element name="TCustomDockForm.FormStyle" link="#lcl.forms.TCustomForm.FormStyle"/>
|
||||
<element name="TCustomDockForm.AutoScroll">
|
||||
<short>
|
||||
Indicates if the form can automatically show or hide scroll bars.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
AutoScroll is a Boolean property which indicates if the form can automatically show or hide its scroll bars. The default valule for the property is False in TCustomDockForm.
|
||||
</p>
|
||||
<p>
|
||||
AutoScroll can only be True when the BorderStyle for the form is bsSizeable or bsSizeToolWin , and may be changed to False at run-time when BorderStyle is changed to another value.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.forms.TCustomDockForm.BorderStyle">TCustomDockForm.BorderStyle</link>
|
||||
<link id="#lcl.forms.TCustomForm.AutoScroll">TCustomForm.AutoScroll</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomDockForm.BorderStyle">
|
||||
<short>
|
||||
The border style affects the title bar, border and resize behavior of the form.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
Use BorderStyle to get or set the appearance of the form's border. The default value in TCustomDockForm is bsSizeToolWin.
|
||||
</p>
|
||||
<p>
|
||||
This property is slightly different (has a different base type) from the TCustomControl.BorderStyle property. When the form is put into another control the window borders depend on the widgetset. There are no borders under GTK.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.forms.TCustomForm.BorderStyle">TCustomForm.BorderStyle</link>
|
||||
<link id="#lcl.controls.TFormBorderStyle">TFormBorderStyle</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomDockForm.FormStyle">
|
||||
<short>
|
||||
Indicates the style for the form.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value in TCustomDockForm is fsStayOnTop.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.forms.TCustomForm.FormStyle">TCustomForm.FormStyle</link>
|
||||
<link id="#lcl.controls.TFormStyle">TFormStyle</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomDockForm.PixelsPerInch" link="#lcl.forms.TCustomDesignControl.PixelsPerInch"/>
|
||||
|
||||
<element name="THintWindow">
|
||||
@ -10412,6 +10519,33 @@
|
||||
<short/>
|
||||
</element>
|
||||
|
||||
<element name="TApplication.HelpShowTableOfContents">
|
||||
<short>
|
||||
Displays the Help Table of Contents using the Help Manager for the application.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
<var>HelpShowTableOfContents</var> is a method used to display the Help Table of Contents for the application. It uses the global <var>HelpManager</var> variable (when assigned) to call its <var>ShowTableOfContents</var> method. This method must be re-implemented in a descendent class; the default implementation simply returns the <var>shrHelpNotFound</var> result.
|
||||
</p>
|
||||
<p>
|
||||
The return value is <b>True</b> when the HelpManager successfully displays the Table of Contents, and returns the <var>shrSuccess</var> result code. If HelpManager has not been assigned, the return value is always <b>False</b>.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.helpintfs.HelpManager">HelpManager</link>
|
||||
<link id="#lcl.helpintfs.THelpManager.ShowTableOfContents">THelpManager.ShowTableOfContents</link>
|
||||
<link id="#lcl.helpintfs.TShowHelpResult">TShowHelpResult</link>
|
||||
</seealso>
|
||||
<version>
|
||||
Added in LCL version 2.2.0. This method is Delphi compatible.
|
||||
</version>
|
||||
</element>
|
||||
<element name="TApplication.HelpShowTableOfContents.Result">
|
||||
<short>
|
||||
True if the Help Table of Contents was successfully displayed by the application.
|
||||
</short>
|
||||
</element>
|
||||
|
||||
<element name="TApplication.ShowHelpForObject">
|
||||
<short>When Sender is a TControl, invoke its ShowHelp method.</short>
|
||||
<descr/>
|
||||
|
@ -9989,7 +9989,7 @@
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="TCustomGrid.ScrollBars"/>
|
||||
<link id="TScrollStyle"/>
|
||||
<link id="#lcl.stdctrls.TScrollStyle">TScrollStyle</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="TCustomGrid.ScrollBarAutomatic.Result">
|
||||
@ -11557,7 +11557,7 @@
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="TScrollStyle"/>
|
||||
<link id="#lcl.stdctrls.TScrollStyle">TScrollStyle</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
@ -12612,12 +12612,16 @@
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomGrid.TabStop" link="#lcl.controls.TWinControl.TabStop">
|
||||
<short/>
|
||||
<element name="TCustomGrid.TabStop">
|
||||
<short>Allows the user to navigate to this control, by pressing the Tab key.</short>
|
||||
<descr>
|
||||
The default value for TabStop is True in TCustomGrid.
|
||||
<p>
|
||||
The default value for TabStop is True in TCustomGrid.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso/>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TWinControl.TabStop">TWinControl.TabStop</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomGrid.IMEStartComposition">
|
||||
@ -13926,7 +13930,30 @@
|
||||
<element name="TDrawGrid.MouseWheelOption" link="#lcl.grids.TCustomGrid.MouseWheelOption"/>
|
||||
<element name="TDrawGrid.Options" link="#lcl.grids.TCustomGrid.Options"/>
|
||||
<element name="TDrawGrid.Options2" link="#lcl.grids.TCustomGrid.Options2"/>
|
||||
<element name="TDrawGrid.ParentColor" link="#lcl.controls.TControl.ParentColor"/>
|
||||
|
||||
<element name="TDrawGrid.ParentColor">
|
||||
<short>
|
||||
Uses the Color from the Parent control, when enabled.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
ParentColor determines if the control should use the Color from the Parent control, when enabled. The default value for the property is False in TDrawGrid.
|
||||
</p>
|
||||
<p>
|
||||
When this property is True, all changes to the Color of the parent will also be applied to the Color of the control, ensuring that they both contain same value. If the Color of the control is changed by the application, then ParentColor will be automatically set to False.
|
||||
</p>
|
||||
<p>
|
||||
Using ParentColor when the Color value is clDefault can cause problems in resolving the actual color value. To obtain the Color property of a control while taking into account clDefault and ParentColor, use the GetColorResolvingParent method. This method might return a non-RGB color, but will never return clDefault. To obtain a purely RGB result use the GetRGBColorResolvingParent method.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TControl.ParentColor">TControl.ParentColor</link>
|
||||
<link id="#lcl.controls.TControl.Color">TControl.Color</link>
|
||||
<link id="#lcl.controls.TControl.GetColorResolvingParent">TControl.GetColorResolvingParent</link>
|
||||
<link id="#lcl.controls.TControl.GetRGBColorResolvingParent">TControl.GetRGBColorResolvingParent</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TDrawGrid.ParentDoubleBuffered" link="#lcl.controls.TWinControl.ParentDoubleBuffered"/>
|
||||
<element name="TDrawGrid.ParentFont" link="#lcl.controls.TControl.ParentFont"/>
|
||||
<element name="TDrawGrid.ParentShowHint" link="#lcl.controls.TControl.ParentShowHint"/>
|
||||
@ -15187,7 +15214,30 @@
|
||||
<element name="TStringGrid.Options" link="#lcl.grids.TCustomGrid.Options"/>
|
||||
<element name="TStringGrid.Options2" link="#lcl.grids.TCustomGrid.Options2"/>
|
||||
<element name="TStringGrid.ParentBiDiMode" link="#lcl.controls.TControl.ParentBiDiMode"/>
|
||||
<element name="TStringGrid.ParentColor" link="#lcl.controls.TControl.ParentColor"/>
|
||||
|
||||
<element name="TStringGrid.ParentColor">
|
||||
<short>
|
||||
Uses the Color from the Parent control, when enabled.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
ParentColor determines if the control should use the Color from the Parent control, when enabled. The default value for the property is False in TStringGrid.
|
||||
</p>
|
||||
<p>
|
||||
When this property is True, all changes to the Color of the parent will also be applied to the Color of the control, ensuring that they both contain same value. If the Color of the control is changed by the application, then ParentColor will be automatically set to False.
|
||||
</p>
|
||||
<p>
|
||||
Using ParentColor when the Color value is clDefault can cause problems in resolving the actual color value. To obtain the Color property of a control while taking into account clDefault and ParentColor, use the GetColorResolvingParent method. This method might return a non-RGB color, but will never return clDefault. To obtain a purely RGB result use the GetRGBColorResolvingParent method.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TControl.ParentColor">TControl.ParentColor</link>
|
||||
<link id="#lcl.controls.TControl.Color">TControl.Color</link>
|
||||
<link id="#lcl.controls.TControl.GetColorResolvingParent">TControl.GetColorResolvingParent</link>
|
||||
<link id="#lcl.controls.TControl.GetRGBColorResolvingParent">TControl.GetRGBColorResolvingParent</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TStringGrid.ParentDoubleBuffered" link="#lcl.controls.TWinControl.ParentDoubleBuffered"/>
|
||||
<element name="TStringGrid.ParentFont" link="#lcl.controls.TControl.ParentFont"/>
|
||||
<element name="TStringGrid.ParentShowHint" link="#lcl.controls.TControl.ParentShowHint"/>
|
||||
|
@ -286,21 +286,24 @@
|
||||
<dt>Message</dt>
|
||||
<dd>The message text without other parsed items.</dd>
|
||||
</dl>
|
||||
<pre>
|
||||
Example:
|
||||
|
||||
Message written by FPC:
|
||||
unit1.pas(21,3) Warning: unit buttons not used
|
||||
|
||||
Results in:
|
||||
Stage=FPC
|
||||
Type=Warning
|
||||
Line=21
|
||||
Column=3
|
||||
Message=unit buttons not used
|
||||
</pre>
|
||||
<p>
|
||||
<b>Example:</b>
|
||||
</p>
|
||||
<p>
|
||||
Message written by FPC:
|
||||
</p>
|
||||
<code>unit1.pas(21,3) Warning: unit buttons not used</code>
|
||||
<p>
|
||||
Results in:
|
||||
</p>
|
||||
<code>
|
||||
Stage=FPC
|
||||
Type=Warning
|
||||
Line=21
|
||||
Column=3
|
||||
Message=unit buttons not used
|
||||
</code>
|
||||
</descr>
|
||||
<errors/>
|
||||
<seealso/>
|
||||
</element>
|
||||
|
||||
@ -388,34 +391,44 @@
|
||||
</element>
|
||||
|
||||
<element name="THelpManager.DoHelpNotFound">
|
||||
<short/>
|
||||
<descr/>
|
||||
<errors/>
|
||||
<short>Performs actions when help is not available in the help manager.</short>
|
||||
<descr>
|
||||
<p>
|
||||
<var>DoHelpNotFound</var> is a <var>TShowHelpResult</var> class function used to perform actions when help cannot be displayed using the help manager instance. It sets the help result and error message when the help file, query, or context is not available (or implemented) in the help manager. The default implementation sets the return value to <var>shrHelpNotFound</var>, and sets ErrMsg to 'Help not found'.
|
||||
</p>
|
||||
<p>
|
||||
DoHelpNotFound is called from help manager methods which display a given help type.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso/>
|
||||
</element>
|
||||
<element name="THelpManager.DoHelpNotFound.Result">
|
||||
<short/>
|
||||
</element>
|
||||
<element name="THelpManager.DoHelpNotFound.ErrMsg">
|
||||
<short/>
|
||||
<short>Error message displayed when help is not available in the help manager.</short>
|
||||
</element>
|
||||
|
||||
<element name="THelpManager.ShowTableOfContents">
|
||||
<short/>
|
||||
<short>Displays the Help Table of Contents for the help manager.</short>
|
||||
<descr/>
|
||||
<errors/>
|
||||
<seealso/>
|
||||
</element>
|
||||
<element name="THelpManager.ShowTableOfContents.Result">
|
||||
<short/>
|
||||
<short>Help display result code.</short>
|
||||
</element>
|
||||
<element name="THelpManager.ShowTableOfContents.ErrMsg">
|
||||
<short/>
|
||||
<short>Error message displayed when the return value is not shrSuccess.</short>
|
||||
</element>
|
||||
|
||||
<element name="THelpManager.ShowError">
|
||||
<short/>
|
||||
<descr/>
|
||||
<short>Not implemented in THelpManager.</short>
|
||||
<descr>
|
||||
<p>
|
||||
Abstract virtual method which must be implemented in a descendent class.
|
||||
</p>
|
||||
</descr>
|
||||
<errors/>
|
||||
<seealso/>
|
||||
</element>
|
||||
|
@ -419,9 +419,13 @@
|
||||
<short>True if the class has a specific ancestor.</short>
|
||||
</element>
|
||||
|
||||
<element name="TCustomPairSplitter.Cursor" link="#lcl.controls.TControl.Cursor">
|
||||
<element name="TCustomPairSplitter.Cursor">
|
||||
<short>Cursor displayed when the control is resized.</short>
|
||||
<descr/>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is crHSplit in TCustomPairSplitter.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TControl.Cursor">TControl.Cursor</link>
|
||||
</seealso>
|
||||
|
@ -814,7 +814,24 @@
|
||||
<element name="TShellTreeView.Images" link="#lcl.comctrls.TCustomTreeView.Images"/>
|
||||
<element name="TShellTreeView.Indent" link="#lcl.comctrls.TCustomTreeView.Indent"/>
|
||||
<element name="TShellTreeView.MultiSelectStyle" link="#lcl.comctrls.TCustomTreeView.MultiSelectStyle"/>
|
||||
<element name="TShellTreeView.ParentColor" link="#lcl.controls.TControl.ParentColor"/>
|
||||
|
||||
<element name="TShellTreeView.ParentColor">
|
||||
<short>
|
||||
Uses the Color from the Parent control, when enabled.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
ParentColor determines if the control should use the Color from the Parent control, when enabled. The default value for the property is False in TShellTreeView.
|
||||
</p>
|
||||
<p>
|
||||
When this property is True, all changes to the Color of the parent will also be applied to the Color of the control, ensuring that they both contain same value. If the Color of the control is changed by the application, then ParentColor will be automatically set to False.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TControl.ParentColor"/>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TShellTreeView.ParentFont" link="#lcl.controls.TControl.ParentFont"/>
|
||||
<element name="TShellTreeView.ParentShowHint" link="#lcl.controls.TControl.ParentShowHint"/>
|
||||
<element name="TShellTreeView.PopupMenu" link="#lcl.controls.TControl.PopupMenu"/>
|
||||
@ -829,10 +846,21 @@
|
||||
<element name="TShellTreeView.ShowLines" link="#lcl.comctrls.TCustomTreeView.ShowLines"/>
|
||||
<element name="TShellTreeView.ShowRoot" link="#lcl.comctrls.TCustomTreeView.ShowRoot"/>
|
||||
<element name="TShellTreeView.StateImages" link="#lcl.comctrls.TCustomTreeView.StateImages"/>
|
||||
<element name="TShellTreeView.TabStop" link="#lcl.controls.TWinControl.TabStop"/>
|
||||
|
||||
<element name="TShellTreeView.TabStop">
|
||||
<short>Enables navigation using the Tab key.</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the properly is True in TShellTreeView.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TWinControl.TabStop">TWinControl.TabStop</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TShellTreeView.TabOrder" link="#lcl.controls.TWinControl.TabOrder"/>
|
||||
|
||||
<!-- Link attribute to TComponent.Tag does not find the topic using fpdoc in 3.2.2. So I am duplicating the content here temporarily. TODO: Remove this and restore link. -->
|
||||
<element name="TShellTreeView.Tag">
|
||||
<short>Tag value for the component.</short>
|
||||
<descr>
|
||||
@ -1418,9 +1446,24 @@
|
||||
<element name="TShellListView.Align" link="#lcl.controls.TControl.Align"/>
|
||||
<element name="TShellListView.Anchors" link="#lcl.controls.TControl.Anchors"/>
|
||||
<element name="TShellListView.BorderSpacing" link="#lcl.controls.TControl.BorderSpacing"/>
|
||||
<element name="TShellListView.BorderStyle" link="#lcl.controls.TWinControl.BorderStyle"/>
|
||||
<element name="TShellListView.BorderStyle" link="#lcl.comctrls.TCustomListView.BorderStyle"/>
|
||||
<element name="TShellListView.BorderWidth" link="#lcl.controls.TWinControl.BorderWidth"/>
|
||||
<element name="TShellListView.Color" link="#lcl.controls.TControl.Color"/>
|
||||
|
||||
<element name="TShellListView.Color">
|
||||
<short>The background color for the control.</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the properly is clWindow in TShellListView.
|
||||
</p>
|
||||
<p>
|
||||
If Color is set to clDefault, it needs to be passed through GetDefaultColor to resolve clDefault to a TColor value. Convenience routines which obtain the color by resolving clDefault and ParentColor are also provided as TControl.GetColorResolvingParent and TControl.GetRGBColorResolvingParent.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TControl.Color">TControl.Color</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TShellListView.Constraints" link="#lcl.controls.TControl.Constraints"/>
|
||||
<element name="TShellListView.DragCursor" link="#lcl.controls.TControl.DragCursor"/>
|
||||
<element name="TShellListView.DragMode" link="#lcl.controls.TControl.DragMode"/>
|
||||
@ -1432,7 +1475,25 @@
|
||||
<element name="TShellListView.Mask" link="#lcl.shellctrls.TCustomShellListView.Mask"/>
|
||||
<element name="TShellListView.MaskCaseSensitivity" link="#lcl.shellctrls.TCustomShellListView.MaskCaseSensitivity"/>
|
||||
<element name="TShellListView.MultiSelect" link="#lcl.comctrls.TCustomListView.MultiSelect"/>
|
||||
<element name="TShellListView.ParentColor" link="#lcl.controls.TControl.ParentColor"/>
|
||||
|
||||
<element name="TShellListView.ParentColor">
|
||||
<short>Uses the Color from the Parent control, when enabled.</short>
|
||||
<descr>
|
||||
<p>
|
||||
ParentColor determines if the control should use the Color from the Parent control, when enabled. The default value for the property is False in TShellListView.
|
||||
</p>
|
||||
<p>
|
||||
When this property is True, all changes to the Color of the parent will also be applied to the Color of the control, ensuring that they both contain same value. If the Color of the control is changed by the application, then ParentColor will be automatically set to False.
|
||||
</p>
|
||||
<p>
|
||||
Using ParentColor when the Color value is clDefault can cause problems in resolving the actual color value. To obtain the Color property of a control while taking into account clDefault and ParentColor, use the GetColorResolvingParent method. This method might return a non-RGB color, but will never return clDefault. To obtain a purely RGB result use the GetRGBColorResolvingParent method.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TControl.ParentColor">TControl.ParentColor</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TShellListView.ParentFont" link="#lcl.controls.TControl.ParentFont"/>
|
||||
<element name="TShellListView.ParentShowHint" link="#lcl.controls.TControl.ParentShowHint"/>
|
||||
<element name="TShellListView.PopupMenu" link="#lcl.controls.TControl.PopupMenu"/>
|
||||
@ -1446,7 +1507,7 @@
|
||||
<element name="TShellListView.SortColumn" link="#lcl.comctrls.TCustomListView.SortColumn"/>
|
||||
<element name="TShellListView.SortType" link="#lcl.comctrls.TCustomListView.SortType"/>
|
||||
<element name="TShellListView.StateImages" link="#lcl.comctrls.TCustomListView.StateImages"/>
|
||||
<element name="TShellListView.TabStop" link="#lcl.controls.TWinControl.TabStop"/>
|
||||
<element name="TShellListView.TabStop" link="#lcl.comctrls.TCustomListVIew.TabStop"/>
|
||||
<element name="TShellListView.TabOrder" link="#lcl.controls.TWinControl.TabOrder"/>
|
||||
<element name="TShellListView.ToolTips" link="#lcl.comctrls.TCustomListView.ToolTips"/>
|
||||
<element name="TShellListView.Visible" link="#lcl.controls.TControl.Visible"/>
|
||||
|
@ -646,7 +646,18 @@
|
||||
</descr>
|
||||
</element>
|
||||
|
||||
<element name="TCustomScrollBar.TabStop" link="#lcl.controls.TWinControl.TabStop"/>
|
||||
<element name="TCustomScrollBar.TabStop">
|
||||
<short>Enables navigation using the Tab key.</short>
|
||||
<descr>
|
||||
<p>
|
||||
Allows the user to navigate to this control, by pressing the Tab key.
|
||||
The default value for the property is True in TCustomScrollBar.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TWinControl.TabStop">TWinControl.TabStop</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomScrollBar.OnChange">
|
||||
<short>Event handler signalled when the value in Position, Min, Max, or PageSize is changed.</short>
|
||||
@ -768,7 +779,7 @@
|
||||
<element name="TScrollBar.ShowHint" link="#lcl.controls.TControl.ShowHint"/>
|
||||
<element name="TScrollBar.SmallChange" link="#lcl.stdctrls.TCustomScrollBar.SmallChange"/>
|
||||
<element name="TScrollBar.TabOrder" link="#lcl.controls.TWinControl.TabOrder"/>
|
||||
<element name="TScrollBar.TabStop" link="#lcl.controls.TWinControl.TabStop"/>
|
||||
<element name="TScrollBar.TabStop" link="#lcl.stdctrls.TCustomScrollBar.TabStop"/>
|
||||
<element name="TScrollBar.Visible" link="#lcl.controls.TControl.Visible"/>
|
||||
|
||||
<element name="TCustomGroupBox">
|
||||
@ -2553,7 +2564,20 @@
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomComboBox.ParentColor" link="#lcl.controls.TControl.ParentColor"/>
|
||||
<element name="TCustomComboBox.ParentColor">
|
||||
<short>Uses the Color from the Parent control, when enabled.</short>
|
||||
<descr>
|
||||
<p>
|
||||
ParentColor determines if the control should use the Color from the Parent control, when enabled. The default value for the property is False in TCustomComboBox.
|
||||
</p>
|
||||
<p>
|
||||
When this property is True, all changes to the Color of the parent will also be applied to the Color of the control, ensuring that they both contain same value. If the Color of the control is changed by the application, then ParentColor will be automatically set to False.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TControl.ParentColor">TControl.ParentColor</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomComboBox.Sorted">
|
||||
<short>Determines whether the list entries are sorted in alphanumeric order.</short>
|
||||
@ -3145,7 +3169,17 @@
|
||||
</descr>
|
||||
</element>
|
||||
|
||||
<element name="TCustomComboBox.TabStop" link="#lcl.controls.TWinControl.TabStop"/>
|
||||
<element name="TCustomComboBox.TabStop">
|
||||
<short>Enables or disables navigation using the Tab key.</short>
|
||||
<descr>
|
||||
<p>
|
||||
Allows the user to navigate to this control, by pressing the Tab key. The default value for the property is True in TCustomComboBox.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TWinControl.TabStop">TWinControl.TabStop</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomComboBox.Text">
|
||||
<short>The value in the edit box for the control.</short>
|
||||
@ -3263,7 +3297,7 @@
|
||||
<element name="TComboBox.OnStartDrag" link="#lcl.controls.TControl.OnStartDrag"/>
|
||||
<element name="TComboBox.OnUTF8KeyPress" link="#lcl.controls.TWinControl.OnUTF8KeyPress"/>
|
||||
<element name="TComboBox.ParentBidiMode" link="#lcl.controls.TControl.ParentBiDiMode"/>
|
||||
<element name="TComboBox.ParentColor" link="#lcl.controls.TControl.ParentColor"/>
|
||||
<element name="TComboBox.ParentColor" link="#lcl.stdctrls.TCustomComboBox.ParentColor"/>
|
||||
<element name="TComboBox.ParentDoubleBuffered" link="#lcl.controls.TWinControl.ParentDoubleBuffered"/>
|
||||
<element name="TComboBox.ParentFont" link="#lcl.controls.TControl.ParentFont"/>
|
||||
<element name="TComboBox.ParentShowHint" link="#lcl.controls.TControl.ParentShowHint"/>
|
||||
@ -3273,7 +3307,7 @@
|
||||
<element name="TComboBox.Sorted" link="#lcl.stdctrls.TCustomComboBox.Sorted"/>
|
||||
<element name="TComboBox.Style" link="#lcl.stdctrls.TCustomComboBox.Style"/>
|
||||
<element name="TComboBox.TabOrder" link="#lcl.controls.TWinControl.TabOrder"/>
|
||||
<element name="TComboBox.TabStop" link="#lcl.controls.TWinControl.TabStop"/>
|
||||
<element name="TComboBox.TabStop" link="#lcl.stdctrls.TCustomComboBox.TabStop"/>
|
||||
<element name="TComboBox.Text" link="#lcl.stdctrls.TCustomComboBox.Text"/>
|
||||
<element name="TComboBox.TextHint" link="#lcl.stdctrls.TCustomComboBox.TextHint"/>
|
||||
<element name="TComboBox.Visible" link="#lcl.controls.TControl.Visible"/>
|
||||
@ -4368,7 +4402,18 @@
|
||||
|
||||
<element name="TCustomListBox.Align" link="#lcl.controls.TControl.Align"/>
|
||||
<element name="TCustomListBox.Anchors" link="#lcl.controls.TControl.Anchors"/>
|
||||
<element name="TCustomListBox.BorderStyle" link="#lcl.controls.TWinControl.BorderStyle"/>
|
||||
|
||||
<element name="TCustomListBox.BorderStyle">
|
||||
<short>Line style used for the border on the control.</short>
|
||||
<descr>
|
||||
<p>
|
||||
Indicates the line style drawn as a border around the control. The default value for the property is bsSingle in TCustomListBox.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TWinControl.BorderStyle">TWinControl.BorderStyle</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomListBox.Canvas">
|
||||
<short>Drawing surface where the control is drawn.</short>
|
||||
@ -4611,7 +4656,21 @@
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomListBox.ParentColor" link="#lcl.controls.TControl.ParentColor"/>
|
||||
<element name="TCustomListBox.ParentColor">
|
||||
<short>Use the Color from the Parent control, when enabled.</short>
|
||||
<descr>
|
||||
<p>
|
||||
ParentColor determines if the control should use the Color from the Parent control, when enabled. The default value for the property is False in TCustomListBox.
|
||||
</p>
|
||||
<p>
|
||||
When this property is True, all changes to the Color of the parent will also be applied to the Color of the control, ensuring that they both contain same value. If the Color of the control is changed by the application, then ParentColor will be automatically set to False.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TControl.ParentColor">TControl.ParentColor</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomListBox.ParentFont" link="#lcl.controls.TControl.ParentFont"/>
|
||||
<element name="TCustomListBox.ParentShowHint" link="#lcl.controls.TControl.ParentShowHint"/>
|
||||
<element name="TCustomListBox.PopupMenu" link="#lcl.controls.TControl.PopupMenu"/>
|
||||
@ -4738,7 +4797,19 @@
|
||||
</element>
|
||||
|
||||
<element name="TCustomListBox.TabOrder" link="#lcl.controls.TWinControl.TabOrder"/>
|
||||
<element name="TCustomListBox.TabStop" link="#lcl.controls.TWinControl.TabStop"/>
|
||||
|
||||
<element name="TCustomListBox.TabStop">
|
||||
<short>Enables navigation using the Tab key.</short>
|
||||
<descr>
|
||||
<p>
|
||||
Allows the user to navigate to this control, by pressing the Tab key.
|
||||
The default value for the property is True in TCustomListBox.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TWinControl.TabStop"/>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomListBox.TopIndex">
|
||||
<short>Index of the first visible (or top-most) item.</short>
|
||||
@ -4797,7 +4868,7 @@
|
||||
<element name="TListBox.Anchors" link="#lcl.controls.TControl.Anchors"/>
|
||||
<element name="TListBox.BidiMode" link="#lcl.controls.TControl.BiDiMode"/>
|
||||
<element name="TListBox.BorderSpacing" link="#lcl.controls.TControl.BorderSpacing"/>
|
||||
<element name="TListBox.BorderStyle" link="#lcl.controls.TWinControl.BorderStyle"/>
|
||||
<element name="TListBox.BorderStyle" link="#lcl.stdctrls.TCustomListBox.BorderStyle"/>
|
||||
<element name="TListBox.ClickOnSelChange" link="#lcl.stdctrls.TCustomListBox.ClickOnSelChange"/>
|
||||
<element name="TListBox.Color" link="#lcl.controls.TControl.Color"/>
|
||||
<element name="TListBox.Columns" link="#lcl.stdctrls.TCustomListBox.Columns"/>
|
||||
@ -4857,7 +4928,6 @@
|
||||
<element name="TListBox.OnMouseWheel" link="#lcl.controls.TControl.OnMouseWheel"/>
|
||||
<element name="TListBox.OnMouseWheelDown" link="#lcl.controls.TControl.OnMouseWheelDown"/>
|
||||
<element name="TListBox.OnMouseWheelUp" link="#lcl.controls.TControl.OnMouseWheelUp"/>
|
||||
|
||||
<element name="TListBox.OnMouseWheelHorz" link="#lcl.controls.TControl.OnMouseWheelHorz"/>
|
||||
<element name="TListBox.OnMouseWheelLeft" link="#lcl.controls.TControl.OnMouseWheelLeft"/>
|
||||
<element name="TListBox.OnMouseWheelRight" link="#lcl.controls.TControl.OnMouseWheelRight"/>
|
||||
@ -4868,7 +4938,7 @@
|
||||
<element name="TListBox.OnUTF8KeyPress" link="#lcl.controls.TWinControl.OnUTF8KeyPress"/>
|
||||
<element name="TListBox.Options" link="#lcl.stdctrls.TCustomListBox.Options"/>
|
||||
<element name="TListBox.ParentBidiMode" link="#lcl.controls.TControl.ParentBiDiMode"/>
|
||||
<element name="TListBox.ParentColor" link="#lcl.controls.TControl.ParentColor"/>
|
||||
<element name="TListBox.ParentColor" link="#lcl.stdctrls.TCustomListBox.ParentColor"/>
|
||||
<element name="TListBox.ParentDoubleBuffered" link="#lcl.controls.TWinControl.ParentDoubleBuffered"/>
|
||||
<element name="TListBox.ParentShowHint" link="#lcl.controls.TControl.ParentShowHint"/>
|
||||
<element name="TListBox.ParentFont" link="#lcl.controls.TControl.ParentFont"/>
|
||||
@ -4878,7 +4948,7 @@
|
||||
<element name="TListBox.Sorted" link="#lcl.stdctrls.TCustomListBox.Sorted"/>
|
||||
<element name="TListBox.Style" link="#lcl.stdctrls.TCustomListBox.Style"/>
|
||||
<element name="TListBox.TabOrder" link="#lcl.controls.TWinControl.TabOrder"/>
|
||||
<element name="TListBox.TabStop" link="#lcl.controls.TWinControl.TabStop"/>
|
||||
<element name="TListBox.TabStop" link="#lcl.stdctrls.TCustomListBox.TabStop"/>
|
||||
<element name="TListBox.TopIndex" link="#lcl.stdctrls.TCustomListBox.TopIndex"/>
|
||||
<element name="TListBox.Visible" link="#lcl.controls.TControl.Visible"/>
|
||||
|
||||
@ -5950,8 +6020,31 @@
|
||||
<seealso/>
|
||||
</element>
|
||||
|
||||
<element name="TCustomEdit.AutoSize" link="#lcl.controls.TControl.AutoSize"/>
|
||||
<element name="TCustomEdit.BorderStyle" link="#lcl.controls.TWinControl.BorderStyle"/>
|
||||
<element name="TCustomEdit.AutoSize">
|
||||
<short>
|
||||
Allows automatic adjustment of the size for the control, according to its content.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
The action performed depends on the control type. For example, a label or button can become bigger or smaller to accommodate a longer or shorter caption. The default value for the property is True in TCustomEdit. and enables auto-sizing the control instance to its content.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TControl.AutoSize">TControl.AutoSize</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomEdit.BorderStyle">
|
||||
<short>Indicates the line style drawn as a border around the control.</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is bsSingle in TCustomEdit.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TWinControl.BorderStyle">TWinControl.BorderStyle</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomEdit.CanUndo">
|
||||
<short>Indicates whether the last change can be reverted in the control.</short>
|
||||
@ -6258,7 +6351,19 @@
|
||||
</element>
|
||||
|
||||
<element name="TCustomEdit.TabOrder" link="#lcl.controls.TWinControl.TabOrder"/>
|
||||
<element name="TCustomEdit.TabStop" link="#lcl.controls.TWinControl.TabStop"/>
|
||||
|
||||
<element name="TCustomEdit.TabStop">
|
||||
<short>Enables navigation using the Tab key.</short>
|
||||
<descr>
|
||||
<p>
|
||||
Allows the user to navigate to this control, by pressing the Tab key.
|
||||
The default value for the property is True in TCustomEdit.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TWinControl.TabStop">TWinControl.TabStop</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomEdit.Text">
|
||||
<short>The text displayed and edited for the control.</short>
|
||||
@ -6979,10 +7084,10 @@ end;
|
||||
<element name="TEdit.Anchors" link="#lcl.controls.TControl.Anchors"/>
|
||||
<element name="TEdit.AutoSelect" link="#lcl.stdctrls.TCustomEdit.AutoSelect"/>
|
||||
<element name="TEdit.AutoSelected" link="#lcl.stdctrls.TCustomEdit.AutoSelected"/>
|
||||
<element name="TEdit.AutoSize" link="#lcl.controls.TControl.AutoSize"/>
|
||||
<element name="TEdit.AutoSize" link="#lcl.stdctrls.TCustomEdit.AutoSize"/>
|
||||
<element name="TEdit.BidiMode" link="#lcl.controls.TControl.BiDiMode"/>
|
||||
<element name="TEdit.BorderSpacing" link="#lcl.controls.TControl.BorderSpacing"/>
|
||||
<element name="TEdit.BorderStyle" link="#lcl.controls.TWinControl.BorderStyle"/>
|
||||
<element name="TEdit.BorderStyle" link="#lcl.stdctrls.TCustomEdit.BorderStyle"/>
|
||||
<element name="TEdit.Color" link="#lcl.controls.TControl.Color"/>
|
||||
<element name="TEdit.Constraints" link="#lcl.controls.TControl.Constraints"/>
|
||||
<element name="TEdit.DoubleBuffered" link="#lcl.controls.TWinControl.DoubleBuffered"/>
|
||||
@ -7030,7 +7135,7 @@ end;
|
||||
<element name="TEdit.ReadOnly" link="#lcl.stdctrls.TCustomEdit.ReadOnly"/>
|
||||
<element name="TEdit.ShowHint" link="#lcl.controls.TControl.ShowHint"/>
|
||||
<element name="TEdit.TabOrder" link="#lcl.controls.TWinControl.TabOrder"/>
|
||||
<element name="TEdit.TabStop" link="#lcl.controls.TWinControl.TabStop"/>
|
||||
<element name="TEdit.TabStop" link="#lcl.stdctrls.TCustomEdit.TabStop"/>
|
||||
<element name="TEdit.Text" link="#lcl.stdctrls.TCustomEdit.Text"/>
|
||||
<element name="TEdit.TextHint" link="#lcl.stdctrls.TCustomEdit.TextHint"/>
|
||||
<element name="TEdit.OnUTF8KeyPress" link="#lcl.controls.TWinControl.OnUTF8KeyPress"/>
|
||||
@ -7122,7 +7227,7 @@ end;
|
||||
<element name="TMemo.Anchors" link="#lcl.controls.TControl.Anchors"/>
|
||||
<element name="TMemo.BidiMode" link="#lcl.controls.TControl.BiDiMode"/>
|
||||
<element name="TMemo.BorderSpacing" link="#lcl.controls.TControl.BorderSpacing"/>
|
||||
<element name="TMemo.BorderStyle" link="#lcl.controls.TWinControl.BorderStyle"/>
|
||||
<element name="TMemo.BorderStyle" link="#lcl.stdctrls.TCustomEdit.BorderStyle"/>
|
||||
<element name="TMemo.CharCase" link="#lcl.stdctrls.TCustomEdit.CharCase"/>
|
||||
<element name="TMemo.Color" link="#lcl.controls.TControl.Color"/>
|
||||
<element name="TMemo.Constraints" link="#lcl.controls.TControl.Constraints"/>
|
||||
@ -7172,7 +7277,7 @@ end;
|
||||
<element name="TMemo.ScrollBars" link="#lcl.stdctrls.TCustomMemo.ScrollBars"/>
|
||||
<element name="TMemo.ShowHint" link="#lcl.controls.TControl.ShowHint"/>
|
||||
<element name="TMemo.TabOrder" link="#lcl.controls.TWinControl.TabOrder"/>
|
||||
<element name="TMemo.TabStop" link="#lcl.controls.TWinControl.TabStop"/>
|
||||
<element name="TMemo.TabStop" link="#lcl.stdctrls.TCustomEdit.TabStop"/>
|
||||
<element name="TMemo.Visible" link="#lcl.controls.TControl.Visible"/>
|
||||
<element name="TMemo.WantReturns" link="#lcl.stdctrls.TCustomMemo.WantReturns"/>
|
||||
<element name="TMemo.WantTabs" link="#lcl.stdctrls.TCustomMemo.WantTabs"/>
|
||||
@ -8316,7 +8421,18 @@ end;
|
||||
<seealso/>
|
||||
</element>
|
||||
|
||||
<element name="TCustomButton.TabStop" link="#lcl.controls.TWinControl.TabStop"/>
|
||||
<element name="TCustomButton.TabStop">
|
||||
<short>Enables navigation using the Tab key.</short>
|
||||
<descr>
|
||||
<p>
|
||||
Allows the user to navigate to this control, by pressing the Tab key.
|
||||
The default value for the property is True in TCustomButton.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TWinControl.TabStop"/>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TButton">
|
||||
<short>Implements a push button control.</short>
|
||||
@ -8360,7 +8476,7 @@ end;
|
||||
<element name="TButton.BorderSpacing" link="#lcl.controls.TControl.BorderSpacing"/>
|
||||
<element name="TButton.Cancel" link="#lcl.stdctrls.TCustomButton.Cancel"/>
|
||||
<element name="TButton.Caption" link="#lcl.controls.TControl.Caption"/>
|
||||
<element name="TButton.Color" link="#lcl.controls.TControl.Color"/>
|
||||
<element name="TButton.Color" link="#lcl.stdctrls.TCustomButton.Color"/>
|
||||
<element name="TButton.Constraints" link="#lcl.controls.TControl.Constraints"/>
|
||||
<element name="TButton.Default" link="#lcl.stdctrls.TCustomButton.Default"/>
|
||||
<element name="TButton.DoubleBuffered" link="#lcl.controls.TWinControl.DoubleBuffered"/>
|
||||
@ -8399,7 +8515,7 @@ end;
|
||||
<element name="TButton.PopupMenu" link="#lcl.controls.TControl.PopupMenu"/>
|
||||
<element name="TButton.ShowHint" link="#lcl.controls.TControl.ShowHint"/>
|
||||
<element name="TButton.TabOrder" link="#lcl.controls.TWinControl.TabOrder"/>
|
||||
<element name="TButton.TabStop" link="#lcl.controls.TWinControl.TabStop"/>
|
||||
<element name="TButton.TabStop" link="#lcl.stdctrls.TCustomButton.TabStop"/>
|
||||
<element name="TButton.Visible" link="#lcl.controls.TControl.Visible"/>
|
||||
|
||||
<element name="TCheckBoxState">
|
||||
@ -8805,7 +8921,21 @@ end;
|
||||
<element name="TCheckBox.Alignment" link="#lcl.stdctrls.TCustomCheckBox.Alignment"/>
|
||||
<element name="TCheckBox.AllowGrayed" link="#lcl.stdctrls.TCustomCheckBox.AllowGrayed"/>
|
||||
<element name="TCheckBox.Anchors" link="#lcl.controls.TControl.Anchors"/>
|
||||
<element name="TCheckBox.AutoSize" link="#lcl.controls.TControl.AutoSize"/>
|
||||
|
||||
<element name="TCheckBox.AutoSize">
|
||||
<short>
|
||||
Allows automatic adjustment of the size for the control, according to its content.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
The action performed depends on the control type. For example, a label or button can become bigger or smaller to accommodate a longer or shorter caption. The default value for the property is True in TCheckBox, and enables auto-sizing for the control instance.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TControl.AutoSize">TControl.AutoSize</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCheckBox.BidiMode" link="#lcl.controls.TControl.BiDiMode"/>
|
||||
<element name="TCheckBox.BorderSpacing" link="#lcl.controls.TControl.BorderSpacing"/>
|
||||
<element name="TCheckBox.Caption" link="#lcl.controls.TControl.Caption"/>
|
||||
@ -8852,7 +8982,20 @@ end;
|
||||
<element name="TCheckBox.ShowHint" link="#lcl.controls.TControl.ShowHint"/>
|
||||
<element name="TCheckBox.State" link="#lcl.stdctrls.TCustomCheckBox.State"/>
|
||||
<element name="TCheckBox.TabOrder" link="#lcl.controls.TWinControl.TabOrder"/>
|
||||
<element name="TCheckBox.TabStop" link="#lcl.controls.TWinControl.TabStop"/>
|
||||
|
||||
<element name="TCheckBox.TabStop">
|
||||
<short>Enables navigation using the Tab key.</short>
|
||||
<descr>
|
||||
<p>
|
||||
Allows the user to navigate to this control, by pressing the Tab key.
|
||||
The default value for the property is True in TCheckBox.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TWinControl.TabStop">TWinControl.TabStop</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCheckBox.Visible" link="#lcl.controls.TControl.Visible"/>
|
||||
|
||||
<element name="TToggleBox">
|
||||
@ -8943,7 +9086,20 @@ end;
|
||||
<element name="TToggleBox.ShowHint" link="#lcl.controls.TControl.ShowHint"/>
|
||||
<element name="TToggleBox.State" link="#lcl.stdctrls.TCustomCheckBox.State"/>
|
||||
<element name="TToggleBox.TabOrder" link="#lcl.controls.TWinControl.TabOrder"/>
|
||||
<element name="TToggleBox.TabStop" link="#lcl.controls.TWinControl.TabStop"/>
|
||||
|
||||
<element name="TToggleBox.TabStop">
|
||||
<short>Enables navigation using the Tab key.</short>
|
||||
<descr>
|
||||
<p>
|
||||
Allows the user to navigate to this control, by pressing the Tab key.
|
||||
The default value for the property is True in TToggleBox.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TWinControl.TabStop">TWinControl.TabStop</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TToggleBox.Visible" link="#lcl.controls.TControl.Visible"/>
|
||||
|
||||
<element name="TRadioButton">
|
||||
@ -9088,8 +9244,8 @@ end;
|
||||
<element name="TRadioButton.Alignment" link="#lcl.stdctrls.TCustomCheckBox.Alignment"/>
|
||||
<element name="TRadioButton.Anchors" link="#lcl.controls.TControl.Anchors"/>
|
||||
|
||||
<element name="TRadioButton.AutoSize" link="#lcl.controls.TControl.AutoSize">
|
||||
<short/>
|
||||
<element name="TRadioButton.AutoSize">
|
||||
<short>Enables or disables auto-sizing the control to its content.</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is <b>True</b> in <var>TRadioButton</var>.
|
||||
@ -9143,7 +9299,20 @@ end;
|
||||
<element name="TRadioButton.PopupMenu" link="#lcl.controls.TControl.PopupMenu"/>
|
||||
<element name="TRadioButton.ShowHint" link="#lcl.controls.TControl.ShowHint"/>
|
||||
<element name="TRadioButton.TabOrder" link="#lcl.controls.TWinControl.TabOrder"/>
|
||||
<element name="TRadioButton.TabStop" link="#lcl.controls.TWinControl.TabStop"/>
|
||||
|
||||
<element name="TRadioButton.TabStop">
|
||||
<short>Enables navigation using the Tab key.</short>
|
||||
<descr>
|
||||
<p>
|
||||
Allows the user to navigate to this control, by pressing the Tab key.
|
||||
The default value for the property is True in TRadioButton.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TWinControl.TabStop">TWinControl.TabStop</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TRadioButton.Visible" link="#lcl.controls.TControl.Visible"/>
|
||||
|
||||
<element name="TCustomLabel">
|
||||
@ -9774,8 +9943,11 @@ end;
|
||||
</element>
|
||||
|
||||
<element name="TCustomLabel.AutoSize">
|
||||
<short>Enables or disables auto-sizing for the control.</short>
|
||||
<short>Enables or disables auto-sizing for the control to its content.</short>
|
||||
<descr>
|
||||
<p>
|
||||
The action performed depends on the control type. For example, a label or button can become bigger or smaller to accommodate a longer or shorter caption.
|
||||
</p>
|
||||
<p>
|
||||
The default value for the property is <b>True</b> in <var>TCustomLabel</var>.
|
||||
</p>
|
||||
@ -9922,7 +10094,20 @@ end;
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomLabel.ParentColor" link="#lcl.controls.TControl.ParentColor"/>
|
||||
<element name="TCustomLabel.ParentColor">
|
||||
<short>Uses the color from the parent control, when enabled.</short>
|
||||
<descr>
|
||||
<p>
|
||||
ParentColor determines if the control should use the Color from the Parent control, when enabled. The default value is False in TCustomLabel.
|
||||
</p>
|
||||
<p>
|
||||
When this property is True, all changes to the Color of the parent will also be applied to the Color of the control, ensuring that they both contain same value. If the Color of the control is changed by the application, then ParentColor will be automatically set to False.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TControl.ParentColor">TControl.ParentColor</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TLabel">
|
||||
<short>Control used to display static text, possibly in multiple lines.</short>
|
||||
@ -9943,11 +10128,11 @@ end;
|
||||
<element name="TLabel.Align" link="#lcl.controls.TControl.Align"/>
|
||||
<element name="TLabel.Alignment" link="#lcl.stdctrls.TCustomLabel.Alignment"/>
|
||||
<element name="TLabel.Anchors" link="#lcl.controls.TControl.Anchors"/>
|
||||
<element name="TLabel.AutoSize" link="#lcl.controls.TControl.AutoSize"/>
|
||||
<element name="TLabel.AutoSize" link="#lcl.stdctrls.TCustomLabel.AutoSize"/>
|
||||
<element name="TLabel.BidiMode" link="#lcl.controls.TControl.BiDiMode"/>
|
||||
<element name="TLabel.BorderSpacing" link="#lcl.controls.TControl.BorderSpacing"/>
|
||||
<element name="TLabel.Caption" link="#lcl.controls.TControl.Caption"/>
|
||||
<element name="TLabel.Color" link="#lcl.controls.TControl.Color"/>
|
||||
<element name="TLabel.Color" link="#lcl.stdctrls.TCustomLabel.Color"/>
|
||||
<element name="TLabel.Constraints" link="#lcl.controls.TControl.Constraints"/>
|
||||
<element name="TLabel.DragCursor" link="#lcl.controls.TControl.DragCursor"/>
|
||||
<element name="TLabel.DragKind" link="#lcl.controls.TControl.DragKind"/>
|
||||
@ -9978,7 +10163,7 @@ end;
|
||||
<element name="TLabel.OnStartDrag" link="#lcl.controls.TControl.OnStartDrag"/>
|
||||
<element name="TLabel.OptimalFill" link="#lcl.stdctrls.TCustomLabel.OptimalFill"/>
|
||||
<element name="TLabel.ParentBidiMode" link="#lcl.controls.TControl.ParentBiDiMode"/>
|
||||
<element name="TLabel.ParentColor" link="#lcl.controls.TControl.ParentColor"/>
|
||||
<element name="TLabel.ParentColor" link="#lcl.stdctrls.TCustomLabel.ParentColor"/>
|
||||
<element name="TLabel.ParentFont" link="#lcl.controls.TControl.ParentFont"/>
|
||||
<element name="TLabel.ParentShowHint" link="#lcl.controls.TControl.ParentShowHint"/>
|
||||
<element name="TLabel.PopupMenu" link="#lcl.controls.TControl.PopupMenu"/>
|
||||
|
@ -2506,7 +2506,29 @@
|
||||
<element name="TValueListEditor.HeaderPushZones" link="#lcl.grids.TCustomGrid.HeaderPushZones"/>
|
||||
<element name="TValueListEditor.MouseWheelOption" link="#lcl.grids.TCustomGrid.MouseWheelOption"/>
|
||||
<element name="TValueListEditor.ParentBiDiMode" link="#lcl.controls.TControl.ParentBiDiMode"/>
|
||||
<element name="TValueListEditor.ParentColor" link="#lcl.controls.TControl.ParentColor"/>
|
||||
|
||||
<element name="TValueListEditor.ParentColor">
|
||||
<short>
|
||||
Uses the Color from the Parent control, when enabled.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
ParentColor determines if the control should use the Color from the Parent control, when enabled. The default value for the property is False in TValueListEditor.
|
||||
</p>
|
||||
<p>
|
||||
When this property is True, all changes to the Color of the parent will also be applied to the Color of the control, ensuring that they both contain same value. If the Color of the control is changed by the application, then ParentColor will be automatically set to False.
|
||||
</p>
|
||||
<p>
|
||||
Using ParentColor when the Color value is clDefault can cause problems in resolving the actual color value. To obtain the Color property of a control while taking into account clDefault and ParentColor, use the GetColorResolvingParent method. This method might return a non-RGB color, but will never return clDefault. To obtain a purely RGB result use the GetRGBColorResolvingParent method.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TControl.ParentColor">TControl.ParentColor</link>
|
||||
<link id="#lcl.controls.TControl.GetColorResolvingParent">TControl.GetColorResolvingParent</link>
|
||||
<link id="#lcl.controls.TControl.GetRGBColorResolvingParent">TControl.GetRGBColorResolvingParent</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TValueListEditor.ParentFont" link="#lcl.controls.TControl.ParentFont"/>
|
||||
<element name="TValueListEditor.ParentShowHint" link="#lcl.controls.TControl.ParentShowHint"/>
|
||||
<element name="TValueListEditor.PopupMenu" link="#lcl.controls.TControl.PopupMenu"/>
|
||||
|
Loading…
Reference in New Issue
Block a user