Skip to content

Commit 194eead

Browse files
authored
Merge pull request #935 from v-maudel/patch-12
L25833: Escaping \ and * characters
2 parents cb4de27 + 0bc1bc4 commit 194eead

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/mfc/reference/styles-used-by-mfc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ Edit styles apply to [CEdit Class](../../mfc/reference/cedit-class.md) objects.
120120
|`ES_NOHIDESEL`|Normally, an edit control hides the selection when the control loses the input focus and inverts the selection when the control receives the input focus. Specifying `ES_NOHIDESEL` deletes this default action.|
121121
|`ES_NUMBER`|Allows only digits to be entered into the edit control.|
122122
|`ES_OEMCONVERT`|Text entered in the edit control is converted from the ANSI character set to the OEM character set and then back to ANSI. This ensures proper character conversion when the application calls the `AnsiToOem` Windows function to convert an ANSI string in the edit control to OEM characters. This style is most useful for edit controls that contain filenames.|
123-
|`ES_PASSWORD`|Displays all characters as an asterisk (**\***) as they are typed into the edit control. An application can use the `SetPasswordChar` member function to change the character that is displayed.|
123+
|`ES_PASSWORD`|Displays all characters as an asterisk (**\\\***) as they are typed into the edit control. An application can use the `SetPasswordChar` member function to change the character that is displayed.|
124124
|`ES_READONLY`|Prevents the user from entering or editing text in the edit control.|
125125
|`ES_RIGHT`|Right-aligns text in a single-line or multiline edit control.|
126126
|`ES_UPPERCASE`|Converts all characters to uppercase as they are typed into the edit control.|

0 commit comments

Comments
 (0)