CuteEditor for ASP 6.6 Class Library

Editor.Focus Property

Specifies whether the editor grabs focus when the page loads. If this property is set to true then the editor will take focus, if it is set to false it will not.


Example Code

      <%
           Dim editor
           Set editor = New CuteEditor
           editor.ID = "Editor1"
           'Specifies whether the editor grabs focus when the page loads.
           editor.Focus = false
           editor.Text = "Hello World"
           editor.Draw()
      %>

See Also

Editor Class | CuteEditor Namespace