Docs: LCL. Removes duplicated content and links to updated original.

This commit is contained in:
dsiders 2021-11-11 18:41:16 +00:00
parent f9a2339a88
commit f506e095e4
2 changed files with 30 additions and 24 deletions

View File

@ -1486,21 +1486,7 @@
<element link="#lcl.controls.TControl.BiDiMode" name="TDBEdit.BiDiMode"/>
<element link="#lcl.controls.TControl.BorderSpacing" name="TDBEdit.BorderSpacing"/>
<element name="TDBEdit.BorderStyle" link="#lcl.controls.TWinControl.BorderStyle"/>
<element name="TDBEdit.CharCase">
<descr>
<p>Indicates how text is displayed in a text editing control in the following ways:
</p>
<ul>
<li>Normal case letters</li>
<li>Upper case letters</li>
<li>Lower case letters</li>
</ul>
<p>The rules can be overridden by use of the Shift key.</p>
</descr>
<seealso>
<link id="#lcl.stdctrls.TCustomEdit.CharCase">TCustomEdit.CharCase</link>
</seealso>
</element>
<element name="TDBEdit.CharCase" link="#lcl.stdctrls.TCustomEdit.CharCase"/>
<element link="#lcl.controls.TControl.Color" name="TDBEdit.Color"/>
<element link="#lcl.controls.TControl.Constraints" name="TDBEdit.Constraints"/>
<element link="#lcl.controls.TWinControl.DoubleBuffered" name="TDBEdit.DoubleBuffered"/>
@ -7742,7 +7728,7 @@
</element>
<element link="#lcl.controls.TControl.GetControlClassDefaultSize" name="TDBCustomNavigator.GetControlClassDefaultSize"/>
<element name="TDBCustomNavigator.GetControlClassDefaultSize.Result">
<short/>
<short>Default size for new instances of the class.</short>
</element>
<element name="TDBCustomNavigator.BeginUpdateButtons">
<short>

View File

@ -6221,16 +6221,36 @@
</element>
<element name="TCustomEdit.CharCase">
<short>Allows to force the text into all upper or lower case.</short>
<short>Controls the character case applied to values entered in the control.</short>
<descr>
<p>The following conversions can be specified:</p>
<ul>
<li>Unchanged</li>
<li>All upper case letters</li>
<li>All lower case letters</li>
</ul>
<remark>Conversions apply to the entire text, and <b>cannot</b> be reverted.</remark>
<p>
CharCase is a TEditCharCase property which indicates how values in Text are converted and displayed in the control.
</p>
<dl>
<dt>ecNormal</dt>
<dd>
Normal letter case is applied; no conversion is applied. Use the Shift key to change the case for a character entered in the control.
</dd>
<dt>ecUpperCase</dt>
<dd>
Values in Text are converted to uppercase letters. Shift key state is ignored.
</dd>
<dt>ecLowerCase</dt>
<dd>
Values in Text are converted to lowercase letters. Shift key state is ignored.
</dd>
</dl>
<p>
The default value for the property is ecNormal. Changing the value for the property causes the existing values in Text to be converted to the case indicated in the new property value.
</p>
<remark>
Conversions apply to the entire value in Text, and <b>cannot</b> be reverted.
</remark>
</descr>
<seealso>
<link id="#lcl.controls.TControl.Text">TControl.Text</link>
<link id="#lcl.stdctrls.TEditCharCase"/>
</seealso>
</element>
<element name="TCustomEdit.EchoMode">