Param

Method

Event

 

 

NoImagev2.0.5.14 or higher

Specifies that an image with the text "No Image" is shown when a local image is pasted.

 

Syntax

    [get] HRESULT NoImage (
    BSTR* pVal
    );
    [put] HRESULT NoImage (
    BSTR newVal
    );

Parameters

[get] pVal

[out, retval] Returns the set value.

[put] newVal

[in] Sets whether or not 'No Image' is shown.

TRUE

Show 'No Image'

FALSE

Do not show 'No Image' (default)

 

Return Values

Returns the currently set value

 

Remarks

The 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 Code

JavaScript [get]

var object = new NamoSE("test");
var NoImage = object.params.NoImage;

 

JavaScript [put]

var object = new NamoSE("test");
object.params.NoImage = true;
object.editorStart();