Пример #1
0
        private void InsertComment2()
        {
            #region radwordsprocessing-model-comment_2
            RadFlowDocumentEditor editor = new RadFlowDocumentEditor(new RadFlowDocument());

            Run run = editor.InsertText("text");
            editor.InsertComment("My sample comment.", run, run);
            #endregion
        }
Пример #2
0
 private void InsertComment(RadFlowDocumentEditor editor, Comment comment)
 {
     #region radwordsprocessing-model-comment_1
     editor.InsertComment(comment);
     #endregion
 }