CuteEditor for ASP 6.6 Class Library

Editor.ResizeMode Property

Sets the resize step in pixels used when the user clicks on "+" or "-" to resize the editor.


Example Code

      <%
           Dim editor
           Set editor = New CuteEditor
           editor.ID = "Editor1"
            'Sets the resize step in pixels used when the user clicks on "+" or "-" to resize the editor.
           editor.ResizeMode = 120
           editor.Text = "Hello World"
           editor.Draw()
      %>

Members

Member Name Description
ResizeCorner This feature allows users adjust the height of the editor area by pulling out from the lower right corner of the wysiwyg editor box.
PlusMinus This feature allows users adjust the height of the editor area by clicking the plus and minus buttons in the lower right corner of the wysiwyg editor box.
AutoAdjust Using the AutoAdjust feature to make the Editor change it's height based on the content. The Editor will now grow and shrink in height to match the content inside. It will never shrink smaller than the current height config option.
None The height of editor is not adjustable.

See Also

Editor Class | CuteEditor Namespace