Param |
Method |
Event |
|
|
NoImagev2.0.5.14 or higherSpecifies that an image with the text "No Image" is shown when a local image is pasted.
Syntax[get] HRESULT NoImage ( [put] HRESULT NoImage ( Parameters[get] pVal [out, retval] Returns the set value. [put] newVal [in] Sets whether or not 'No Image' is shown.
Return ValuesReturns the currently set value
RemarksThe property must be set after MainClass is called and before the editor loads. The call can be performed via the created MainClass object's "params". The default value is 'false'.
Sample CodeJavaScript [get] var object = new NamoSE("test"); var NoImage = object.params.NoImage;
JavaScript [put] var object = new NamoSE("test"); object.params.NoImage = true; object.editorStart();
|