Docs: LCL/maskedit. Updates TCustomMaskEdit topics for changes in b48d102c.

* TCustomMaskEdit.EnableSets removes experimental designation.
* TCustomMaskEdit.OnValidationError adds topic content and See Also links.
This commit is contained in:
dsiders 2024-01-15 23:57:01 +00:00
parent a1f45d1080
commit c9cb29b47a

View File

@ -2618,9 +2618,9 @@ not valid. Raised with the message in <var>SMaskEditNoMatch</var>.
<short>Enables or disables use of set notation in the EditMask.</short> <short>Enables or disables use of set notation in the EditMask.</short>
<descr> <descr>
<p> <p>
<var>EnableSets</var> is an experimental <var>Boolean</var> property. It is <var>EnableSets</var> is a <var>Boolean</var> property used when a new value
used when a new value assigned to the EditMask property is parsed to assigned to the EditMask property is parsed to reconstruct the internal mask
reconstruct the internal mask characters and literals for the control. characters and literals for the control.
</p> </p>
<p> <p>
When set to <b>False</b>, the '[' and ']' characters used in set notation are When set to <b>False</b>, the '[' and ']' characters used in set notation are
@ -2653,10 +2653,22 @@ Event handler signalled when the value for the masked edit control is invalid.
<p> <p>
<var>OnValidationError</var> is a <var>TNotifyEvent</var> property with the <var>OnValidationError</var> is a <var>TNotifyEvent</var> property with the
event handler signalled when the value for the masked edit control is invalid event handler signalled when the value for the masked edit control is invalid
for its <var>EditMask</var>. for its <var>EditMask</var>. OnValidationError is signalled (when assigned)
from the ValidateEdit method and occurs when focus is removed from the control
and ValidationErrorMode is set mvemEvent. An application can implement and
assign a handler to perform actions needed to respond to an invalid value
entered in the control.
</p> </p>
</descr> </descr>
<seealso/> <seealso>
<link id="TCustomMaskEdit.ValidateEdit"/>
<link id="TCustomMaskEdit.ValidationErrorMode"/>
<link id="TCustomMaskEdit.IsMasked"/>
<link id="TCustomMaskEdit.EditMask"/>
<link id="TCustomMaskEdit.EditText"/>
<link id="TMaskEditValidationErrorMode"/>
<link id="#rtl.classes.TNotifyEvent">TNotifyEvent</link>
</seealso>
</element> </element>
<element name="TMaskEdit"> <element name="TMaskEdit">