Help for this page

Select Code to Download


  1. or download this
    $richEdit->Text($richEdit->Text() . " Appended text\n");
    
  2. or download this
    $richEdit->Select (0, 20);
    $richEdit->SetCharFormat(-color => "#0000FF");
    
  3. or download this
    my $font = new Win32::GUI::Font(
                                    -name => "Courier New",
    ...
    );
    
    $richEdit->Append(-text => " Appended text", -font => $font);