当前位置: 首页 > 文档资料 > tinyMCE 帮助文档 >

tinymce-ResizeEvent

优质
小牛编辑
123浏览
2023-12-01

Examples

tinymce.activeEditor.on('ObjectResizeStart', function(e) {
    if (e.target.nodeName == 'IMG') {
        // Prevent resize
        e.preventDefault();
    }
});

tinymce.activeEditor.on('ObjectResized', function(e) {
    console.log(e.target, e.width, e.height);
});

Properties

nametypesummarydefined by
heightNumberCurrent height of the object before or after resize.tinymce.ResizeEvent
targetDOMElementCurrent element that is to be resized or has been resized.tinymce.ResizeEvent
typeStringThe event type name for example "click".tinymce.Event
widthNumberCurrent width of the object before or after resize.tinymce.ResizeEvent

Methods

namesummarydefined by
isDefaultPrevented()Returns true/false if the default action is to be prevented or not.tinymce.Event
isImmediatePropagationStopped()Returns true/false if the event immediate propagation is stopped or not.tinymce.Event
isPropagationStopped()Returns true/false if the event propagation is stopped or not.tinymce.Event
preventDefault()Prevents the default action of an event to be executed.tinymce.Event
stopImmediatePropagation()Prevents the event from propagating to listeners on the same object.tinymce.Event
stopPropagation()Stops the event from propagating up to listeners on parent objects.tinymce.Event

Methods

isDefaultPrevented

isDefaultPrevented():Boolean

Returns true/false if the default action is to be prevented or not.

Return value
  • Boolean - True/false if the event is to be execured or not.

isImmediatePropagationStopped

isImmediatePropagationStopped():Boolean

Returns true/false if the event immediate propagation is stopped or not.

Return value
  • Boolean - True/false if the event immediate propagation is stopped or not.

isPropagationStopped

isPropagationStopped():Boolean

Returns true/false if the event propagation is stopped or not.

Return value
  • Boolean - True/false if the event propagation is stopped or not.

preventDefault

preventDefault()

Prevents the default action of an event to be executed.

stopImmediatePropagation

stopImmediatePropagation()

Prevents the event from propagating to listeners on the same object.

stopPropagation

stopPropagation()

Stops the event from propagating up to listeners on parent objects.

Can't find what you're looking for? Let us know.

Except as otherwise noted, the content of this page is licensed under the Creative Commons BY-NC-SA 3.0 License, and code samples are licensed under the Apache 2.0 License.