1XmTextFieldGetMaxLength(library call) XmTextFieldGetMaxLength(library call)
2
3
4
6 XmTextFieldGetMaxLength — A TextField function that accesses the value
7 of the current maximum allowable length of a text string entered from
8 the keyboard
9
11 #include <Xm/TextF.h>
12 int XmTextFieldGetMaxLength(
13 Widget widget);
14
16 XmTextFieldGetMaxLength accesses the value of the current maximum
17 allowable length of the text string in the TextField widget entered
18 from the keyboard. The maximum allowable length prevents the user from
19 entering a text string larger than this limit. Note that the maximum
20 allowable length is the same as the value of the widget's XmNmaxLength
21 resource.
22
23 widget Specifies the TextField widget ID
24
25 For a complete definition of TextField and its associated resources,
26 see XmTextField(3).
27
29 Returns the integer value that indicates the string's maximum allowable
30 length that can be entered from the keyboard.
31
33 XmTextField(3).
34
35
36
37 XmTextFieldGetMaxLength(library call)