화면 » Api
getscreenurl
Description
Parameters
Parameters |
Type |
Description |
strDelimiterChar |
STRING |
[옵션] 경로 구분자 (기본값: null) |
bTrimFirstChar |
BOOL |
[옵션] 경로 첫번째 문자 제거 여부 (기본값: false) |
Return Value
Type |
Description |
STRING |
화면의 경로 |
Example
function btn_getscreenurl_on_mouseup()
{
// 화면 경로를 그대로 출력
factory.consoleprint(screen.getscreenurl());
// 화면 경로의 디렉토리 구분자를 "|"로 변경
factory.consoleprint(screen.getscreenurl("|"));
// 화면 경로의 디렉토리 구분자를 "_"로 변경하고, 첫번재 문자 제거
factory.consoleprint(screen.getscreenurl("_", true));
}
See Also
getscreenheight
getscreenid
getscreenkind
getscreentitle
getscreentrancode
getscreenwidth
Viewer Ver.
9.1.1.1
Update Date
20240812