简体   繁体   中英

Get maximum editor length that has been set by EM_LIMITTEXT

Text limit of an edit control could be set by sending EM_LIMITTEXT Windows message.

Is there some way to request this parameter from an edit control?

According to the EM_GETLIMITTEXT :

Parameters

wParam

Not used; must be zero.

lParam

Not used; must be zero.

Return value

The return value is the text limit.

So you can try the following code to get the Text limit:

DWORD size = SendMessage(he, EM_GETLIMITTEXT, 0, 0);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM