Docs: LCL/valedit. Removes extra spaces in topics. Updates tagging for True and False values.

This commit is contained in:
dsiders 2022-06-20 15:59:08 +01:00
parent 4344eb400f
commit db285860e3

View File

@ -740,7 +740,7 @@
<short>Index for the non-title row in the associated grid control.</short>
</element>
<element name="TValueListStrings.CanHideShowingEditorAtIndex.Result">
<short>True when the cell editor for the control is visible but not focused.</short>
<short><b>True</b> when the cell editor for the control is visible but not focused.</short>
</element>
<element name="TValueListStrings.InsertItem">
@ -1929,7 +1929,7 @@
<short>The new value for the cell.</short>
</element>
<element name="TValueListEditor.ValidateEntry.Result">
<short>True if the cell value is valid.</short>
<short><b>True</b> if the cell value is valid.</short>
</element>
<element name="TValueListEditor.Create">
@ -2019,7 +2019,7 @@
</seealso>
</element>
<element name="TValueListEditor.DeleteColRow.IsColumn">
<short>True when a column is affected in the method.</short>
<short><b>True</b> when a column is affected in the method.</short>
</element>
<element name="TValueListEditor.DeleteColRow.Index">
<short>Position of the row or column in the control.</short>
@ -2102,7 +2102,7 @@
<short>Relative row number for the specified key name.</short>
</element>
<element name="TValueListEditor.FindRow.Result">
<short>True when the key name exists in the control.</short>
<short><b>True</b> when the key name exists in the control.</short>
</element>
<element name="TValueListEditor.InsertColRow">
@ -2132,7 +2132,7 @@
</seealso>
</element>
<element name="TValueListEditor.InsertColRow.IsColumn">
<short>False if the insert operation is for a row.</short>
<short><b>False</b> if the insert operation is for a row.</short>
</element>
<element name="TValueListEditor.InsertColRow.Index">
<short>Relative position for the inserted column.</short>
@ -2172,7 +2172,7 @@
<short>Value to use in the new row.</short>
</element>
<element name="TValueListEditor.InsertRow.Append">
<short>True if a row is inserted after the current row.</short>
<short><b>True</b> if a row is inserted after the current row.</short>
</element>
<element name="TValueListEditor.InsertRow.Result">
<short>Relative row number for the inserted row.</short>
@ -2231,7 +2231,7 @@
<seealso></seealso>
</element>
<element name="TValueListEditor.ExchangeColRow.IsColumn">
<short>False when exchanging row values.</short>
<short><b>False</b> when exchanging row values.</short>
</element>
<element name="TValueListEditor.ExchangeColRow.Index">
<short>Position for one of the exchanged values.</short>
@ -2262,7 +2262,7 @@
<short>Row number to examine in the method.</short>
</element>
<element name="TValueListEditor.IsEmptyRow.Result">
<short>True if the specified row has empty key name and value cells.</short>
<short><b>True</b> if the specified row has empty key name and value cells.</short>
</element>
<element name="TValueListEditor.LoadFromCSVStream">
@ -2312,7 +2312,7 @@
</seealso>
</element>
<element name="TValueListEditor.MoveColRow.IsColumn">
<short>True if the operation affects a column.</short>
<short><b>True</b> if the operation affects a column.</short>
</element>
<element name="TValueListEditor.MoveColRow.FromIndex">
<short>Original position of the row or column.</short>
@ -2339,7 +2339,7 @@
<seealso></seealso>
</element>
<element name="TValueListEditor.RestoreCurrentRow.Result">
<short>True if the values were successfully restored in the current row.</short>
<short><b>True</b> if the values were successfully restored in the current row.</short>
</element>
<element name="TValueListEditor.Sort">
@ -2515,10 +2515,10 @@
</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.
ParentColor determines if the control should use the Color from the Parent control, when enabled. The default value for the property is <b>False</b> 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.
When this property is <b>True</b>, 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 <b>False</b>.
</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.