cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

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