키보드 » Api

getengchar

Description

입력한 텍스트의 영문 혹은 한글 문자를 반환한다.

Parameters

Parameters Type Description
strText STRING 변경할 텍스트

Return Value

Type Description
STRING 입력한 텍스트의 영문 혹은 한글 문자

Example

function btn_on_mouseup(objInst) { var txt = "a" txt = keyboard.getengchar(txt); // 'ㅁ'으로 변경 screen.alert(txt); txt = keyboard.getengchar(txt); // 다시 'a'로 변경 screen.alert(txt); }

Viewer Ver.

9.1.1.1

Update Date

20230713