|
|
|
|
|
TokenDeletable (Property) In french: JetonSupprimable
The TokenDeletable property is used to: - Determine if the end user is allowed to delete tokens in a "Text token" Edit control.
- Allow or prevent the end user from deleting tokens in a "Text token" Edit control.
IF CBOX_AllowDeletion THEN EDT_Email.TokenDeletable = True ELSE EDT_Email.TokenDeletable = False END
Syntax
Determining if the end user is allowed to delete tokens Hide the details
<Result> = <Edit control>.TokenDeletable
<Result>: Boolean - True if the end user is allowed to delete tokens,
- False otherwise.
<Edit control>: Control name Name of the "Text token" Edit control being used.
Allowing or preventing the user from deleting tokens Hide the details
<Edit control>.TokenDeletable = <Authorization>
<Edit control>: Control name Name of the "Text token" Edit control being used. <Authorization>: Boolean - True if token deletion is allowed,
- False otherwise.
Remarks - An error is generated:
- if the edit control is not a "Text token" Edit control.
- If the TokenEnabled property is set to False.
- If the TokenDeletable property is set to True (default), the user is allowed to delete tokens with the "X" icon or the Delete key.
- If the TokenDeletable property is set to False, the "X" icon is not displayed and the Delete key has no effect.
Related Examples:
|
Unit examples (WINDEV): The Text token edit control
[ + ] Using a "Text token" edit control.
|
|
Unit examples (WEBDEV): The text token edit control
[ + ] Using a "Text token" edit control.
|
|
Unit examples (WINDEV Mobile): The Text token edit control
[ + ] Using a "Text token" edit control.
|
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|