f.MessageBox().setTitle()
f.MessageBox().setTitle(title)
개요
setTitle()를 통해 메세지박스 제목을 설정할 수 있습니다.
파라미터
파라미터명
필수여부
타입
제약사항
설명
title
Yes
String
메세지박스 제목
예시
// Some code
let msgBox = f.MessageBox();
msgBox.setTitle("저장합니다.");
...
msgBox.show();
Last updated
Was this helpful?