HTML Editor for ASP.NET AJAX Professional Edition
SizeChanged Property
Server ReferenceWinthusiasm.HtmlEditorHtmlEditorSizeChanged
The name of a JavaScript function on the page to call when the editor size is changed on the client.
Declaration Syntax
C#
public string SizeChanged { get; set; }
Remarks
The client-side editor will call the named JavaScript function on the page whenever the editor size is changed. This allows the developer to take appropriate related action.
Examples
Set the property declaratively in the HtmlEditor tag:
CopyC#
SizeChanged = "MySizeChangedHandler"
Page JavaScript function:
CopyC#
function MySizeChangedHandler(editor, delta)
{
    var x = delta.x;
    var y = delta.y;
    ...
}

Assembly: Winthusiasm.HtmlEditor (Module: Winthusiasm.HtmlEditor) Version: 2.7.0.0 (2.7.0.0)