cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Use World Cup data to build models, explore spatial relationships, and create informative visualizations in JMP. Register. July 17, 2 pm US Eastern Time.
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
MWalther
Level II

size of Text Edit Box

I have a script, requesting a comment  from the user. 
I use a text edit box, but cannot modify the length of the box (on the screen).
Any Idea how to set a value for the length (like 40 characters, 2 lines, ...) since I want the user to type in detailed comments
example:

H List Box(
     Text Box( "Type in  comment: " ),
      teb = Text Edit Box( initial_text)
),
Spacer Box( size(1, 10) ),
H Center Box(.....

Edit (jthi): added jsl formatting

1 ACCEPTED SOLUTION

Accepted Solutions
mmarchandFSLR
Level VI

Re: size of Text Edit Box

I believe width of Text Edit Boxes is always set in pixels.

 

Names Default To Here( 1 );
New Window( "text test", Text Edit Box( "", <<Set Width( 250 ), <<SetNLines( 2 ), <<Set Hint( "This is a text box you\!Ncan edit!" ) ) );

View solution in original post

1 REPLY 1
mmarchandFSLR
Level VI

Re: size of Text Edit Box

I believe width of Text Edit Boxes is always set in pixels.

 

Names Default To Here( 1 );
New Window( "text test", Text Edit Box( "", <<Set Width( 250 ), <<SetNLines( 2 ), <<Set Hint( "This is a text box you\!Ncan edit!" ) ) );

Recommended Articles