Full screen by default

Last post 02-04-2008, 8:41 PM by RYann. 4 replies.
Sort Posts: Previous Next
  •  01-29-2008, 10:56 PM 36634

    Full screen by default

    I am opening the editor in a new window and cant work out how to make it full screen automatically. How do I do this?

    Filed under:
  •  01-29-2008, 11:05 PM 36635 in reply to 36634

    Re: Full screen by default

    OR, is there a way to specify the height and width of the editor? This would be more helpful.
     
    Thanks ;)
  •  01-30-2008, 10:02 AM 36648 in reply to 36634

    Re: Full screen by default

    RYann:

    I am opening the editor in a new window and cant work out how to make it full screen automatically. How do I do this?

     

    Editor.FullPage Property

    Specify the FullPage state when the page loads. If this property is set to true then the editor will resize to it's full size when the page loads.

     


    Example Code

    <?php
             $editor=new CuteEditor();
             $editor->ID="Editor1";
             $editor->Text="Type here";
             $editor->FilesPath="CuteEditor_Files";
             $editor->FullPage=true;
             $editor->Draw();
             $editor=null; 

             //use $_POST["Editor1"]to catch the data
    ?>

     

     


    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

  •  01-30-2008, 10:06 AM 36649 in reply to 36635

    Re: Full screen by default

    RYann:
    OR, is there a way to specify the height and width of the editor? This would be more helpful.
     
    Thanks ;)
     

    Editor.Height Property

    Specifies the height of the Cute Editor control on the page.

     


    Example Code

    <?php
             $editor=new CuteEditor();
             $editor->ID="Editor1";
             $editor->Text="Type here";
             $editor->FilesPath="CuteEditor_Files";
             $editor->Height=300;
             $editor->Draw();
             $editor=null; 

             //use $_POST["Editor1"]to catch the data
    ?>

     

    Editor.Width Property

    Specifies the width of the Cute Editor control on the page.

     

    Example Code

    <?php
             $editor=new CuteEditor();
             $editor->ID="Editor1";
             $editor->Text="Type here";
             $editor->FilesPath="CuteEditor_Files";
             $editor->Width="100%";
             $editor->Draw();
             $editor=null; 

             //use $_POST["Editor1"]to catch the data
    ?>

     

    Editor.Width Property

    Specifies the width of the Cute Editor control on the page.

     

    Example Code

    <?php
             $editor=new CuteEditor();
             $editor->ID="Editor1";
             $editor->Text="Type here";
             $editor->FilesPath="CuteEditor_Files";
             $editor->Width="100%";
             $editor->Draw();
             $editor=null; 

             //use $_POST["Editor1"]to catch the data
    ?>

     

     


    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

  •  02-04-2008, 8:41 PM 36783 in reply to 36649

    Re: Full screen by default

    Great. Thanks.
View as RSS news feed in XML