Skip to main content
Inspiring
August 12, 2022
Answered

Edittext field with rounded corners

  • August 12, 2022
  • 1 reply
  • 333 views

Is it possible to create rounded edittext field on dialog box or it must be rectangle? 

var box = new Window("dialog","TEST");
box.group = box.add('group', undefined); 
box.group.orientation='row';  
box.group.alignment = 'left';
box.group.text = box.group.add('statictext', [25,40,75,60],"Test");
var testvalue = box.group.add('edittext', [25,40,75,60]);
box.show()

 

This topic has been closed for replies.
Correct answer jazz-y

It will be always rectangle.

1 reply

jazz-yCorrect answer
Legend
August 12, 2022

It will be always rectangle.