RichTextEdit - Max Character Length #5219
-
I'm using RichTextEdit for a project and my boss wants there to be a hard character limit. I know it doesn't support such a thing, but has anyone figured out, or has an idea for a potential work-a-round? |
Beta Was this translation helpful? Give feedback.
Answered by
David-Moreira
Jan 12, 2024
Replies: 1 comment 1 reply
-
Hello, Have you tried setting up the |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
holderbr
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello,
Have you tried setting up the
ValueChanged
handler, and whenever theValue
exceeds the limit, you replace it with the maximum allowed value? This might possibly yield satisfactory results.