getImageEditorUploadImageFolderPath 메소드

SpecialPath.getImageEditorUploadImageFolderPath()

이미지 셀 유형을 사용하여 사진을 선택할 때 업로드된 이미지 있는 폴더의 경로를 가져옵니다.

없음

string

다음 예제 코드에서는 getImageEdiorUploadImageFolderPath 메서드를 사용하여 이미지가 업로드된 폴더의 경로를 가져옵니다.

// 도움말 메소드 얻기
var helper = Forguncy.Helper;
//업로드된 이미지가 있는 폴더의 경로 가져오기
var path = helper.SpecialPath.getImageEditorUploadImageFolderPath();
//업로드된 이미지가 있는 폴더 경로를 보여주는 경고 상자 팝업
alert(path);

Last updated