edit_width

Edit Width.
This attribute specifies the width in character units of an edit box.
Possible values are an integer or a real number.
Default: None.
DCL Code Sample
lisp49s : dialog { //dialog name
label = "edit_width" ; //give it a label
: edit_box { //define edit box
key = "eb1"; //give it a name
label = "Input CD Key "; //give it a label
edit_limit = 4; //limit characters
edit_width = 4; //fix the width
} //end edit box
: edit_box { //define edit box
key = "eb2"; //give it a name
label = "Serial Number"; //give it a label
edit_limit = 8; //limit characters
edit_width = 8; //fix the width
} //end edit box
spacer; //add a space
ok_cancel ; //predefined OK/Cancel button
} //end dialog
|