There is next problem. I need to insert QTextBlock at the beginning of document, which attached with QTextEdit without autoscrolling on this position.

I do next:
Qt Code:
  1. QTextCursor cursor = textEdit->textCursor();
  2. cursor.movePosition(QTextCursor::Start);
  3.  
  4.  
  5. cursor.insertBlock(bf, cf);
  6. cursor.insertText(text);
To copy to clipboard, switch view to plain text mode 

After, QTextEdit scrolls at the inserted TextBlock.

PS: I did cursor.scrollToAnchor(anchor), but it is very slow.