f.MessageBox().setTitle(title)
setTitle()를 통해 메세지박스 제목을 설정할 수 있습니다.
title
Yes
String
메세지박스 제목
// Some code let msgBox = f.MessageBox(); msgBox.setTitle("저장합니다."); ... msgBox.show();
Last updated 7 months ago