FlowDocumentをRTFに変換する
FlowDocumentをRTFに変換する
以下の記事に関連する記事です。
上記の記事では、WPFのRichTextBox
にFlowDocument
を作って表示するなんてことをしたのですが、保存機能も欲しいですよね。
追加のコーディングを節約しつつファイルを保存できる機能を実装してしまいましょう。
最初にやった方法(System.Windows.Forms.RichTextBox)
実は、最初にやったのは、System.Windows.Forms.RichTextBox
を使った方法です。そう、WPFのはずなのに、なぜかWindowsFormsのRichTextBox
です。
WPFのRichTextBox
との間のデータ転送はClipboard
を使います。
全選択→コピー→ペースト
って感じです。(ここでは、本題ではないのでソースは記述しません)
System.Windows.Forms.RichTextBox
はSystem.Windows.Forms.RichTextBox.SaveFile
というメソッドを持っており、RTFとして保存できます。
クソダサいというのが最大の欠点です。
もっといい解決方法(System.Windows.Document.TextRange)
System.Windows.Document.TextRange
というクラスがあります。これのコンストラクタは、System.Windows.Documents.TextPointer
を二つとります。
二つのTextPointer
間のテキストを取得して、クラスにするって感じですかね。
一方で、System.Windows.Documents.FlowDocument
は、ContentStart
, ContentEnd
の二つのプロパティがあり、それぞれ、FlowDocument
インスタンスの先頭と末尾のTextPointer
を返します。つまり
var theFlowDocumentTextRange = new System.Windows.Documents.TextPointer(theFlowDocument.ContentStart, theFlowDocument.ContentEnd);
で、FlowDocument
のオブジェクトのリッチテキストをSystem.Windows.Documents.TextPointer
クラスのインスタンスとして取得できるわけです。
そして、System.Windows.Documents.TextRange
クラスには、Save()
というメソッドがあります。なお、Save()
メソッドの引数はSystem.IO.Stream
とString
です。
var theStream = File.OpenWrite(theFileName);
theFlowDocumentTextRange.Save(theStream, System.Windows.DataFormats.Rtf);
theStream.Close();
という形でRTFファイルに保存することができます。
なお、System.Windows.Documents.TextPointer.Save()
メソッドの第2パラメータには、System.Windows.DataFormats.Rtf
の他に、System.Windows.DataFormats.Text
、System.Windows.DataFormats.Xaml
、System.Windows.DataFormats.XamlPackage
の3種類が指定できます。
Author And Source
この問題について(FlowDocumentをRTFに変換する), 我々は、より多くの情報をここで見つけました https://qiita.com/ikutana/items/12bb6e08ed1d2608d75c著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .