Param |
Method |
Event |
|
|
EmoticonPathv3.5.1.13 or higher에디터의 이모티콘 이미지 경로를 설정합니다.
Syntax[get] HRESULT EmoticonPath ( [put] HRESULT EmoticonPath ( Parameters[get] pVal [out, retval] 설정된 EmoticonPath의 값을 돌려줍니다. [put] newVal [in] EmoticonPath 값을 설정합니다.
Return Values현재 설정된 값을 돌려줍니다.
RemarksEmoticonPath 값을 설정하기 위해서는 에디터의 MainClass가 호출된 후, 에디터가 로드되기 전에 적용시켜 주어야 합니다. 호출은 생성된 MainClass 객체의 "params"을 통하여 할 수 있습니다.
Sample CodesJavaScript [get] var object = new NamoSE("test"); var edit = object.params.EmoticonPath;
JavaScript [put] var object = new NamoSE("test"); object.params.EmoticonPath = "/emoticon/"; object.editorStart();
|