cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Register to attend Discovery Summit 2025 Online: Early Users Edition, Sept. 24-25.
  • New JMP features coming to desktops everywhere this September. Sign up to learn more at jmp.com/launch.
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

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

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