|
|
|
|
|
SelectedText (Property) In french: TexteSélectionné
The SelectedText property is used to get and change the text selected in an Edit control, editable Combo Box control or editable column in a Table control. IF EDT_Edit1.SelectedText = "<E>" THEN EDT_Edit1.SelectedText = "<Enter>" END
Syntax <Text>: Character string Text selected by the user in the edit control. <Control used>: Control name Name of the control to be used. This control can correspond to: - an edit control,
- a Combo Box in edit mode,
- a column of a Table control in edit mode.
Changing the selected text Hide the details
<Control used>.SelectedText = <Text to select>
<Control used>: Control name Name of the control to be used. This control can correspond to: - an edit control,
- a Combo Box in edit mode,
- a column of a Table control in edit mode.
<Text to select>: Character string Text that must be highlighted in the control. The text replaces the text that is currently selected. Remarks Special cases - If the control is in Rich Text Format, the selected text has no formatting.
- If the control is a Unicode control, the string returned is a Unicode string.
Limits The SelectedText property is available for the following controls: - edit control,
- editable Combo Box,
- text column of a Table control.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|