我想将Telerik RadRichTextBox
导出到变量。
(new RtfFormatProvider()).Export(RadRichTextBox1.Document)
但是此代码将显示此错误:
无法从RadDocument转换为RadFlowDocument
答案 0 :(得分:1)
您可能没有引用适当的RtfFormatProvider
类。
检查您的using
,或直接拨打电话:
(new Telerik.Windows.Documents.FormatProviders.Rtf.RtfFormatProvider()).Export(RadRichTextBox1.Document)