키보드 » Api

getshiftchar

Description

입력한 텍스트의 대체 문자를 반환한다.

Parameters

Parameters Type Description
strText STRING 변경할 텍스트

Return Value

Type Description
STRING 입력한 텍스트의 대체 문자

Example

function btn_on_mouseup(objInst) { var txt = "1" txt = keyboard.getshiftchar(txt); // '!'로 변경 screen.alert(txt); txt = keyboard.getshiftchar(txt); // 다시 '1'로 변경 screen.alert(txt); }

Viewer Ver.

9.1.1.1

Update Date

20230713