cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • Use JMP Clinical with CDISC-compliant data. Review studies, ID safety and efficacy signals & communicate findings with interactive graphics. Register to see how. Aug. 27, 2 pm US ET.

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