PowerTools ActiveReports for .NET 9.0J
Load メソッド (RichTextBox)
使用例 

ストリームの内容をRichTextBoxコントロールにロードします。
オーバーロード一覧
オーバーロード解説
LoadRtf、TextまたはHtmlファイルのストリームをロードします。  
解説

ストリームからロードしたデータは、RichTextBoxの内容全体を置換します。


■ 注記 ■

本バージョンで動作がサポートされるのはRtf形式のみです。HtmlやTextファイルのロードには対応していません。


使用例
このサンプルコードを使用するには、sample.rtfファイルとsAsampletmlファイル、およびActiveReport上に2つのRichTextBoxコントロールが必要です。
private void Detail_Format(object sender, System.EventArgs eArgs)
{
    System.IO.FileStream streamR = new System.IO.FileStream(System.Windows.Forms.Application.StartupPath + "\\sample.rtf", System.IO.FileMode.Open);
    rtfRTF.Load(streamR, RichTextType.Rtf);

    System.IO.FileStream streamH = new System.IO.FileStream(System.Windows.Forms.Application.StartupPath + "\\sample.html", System.IO.FileMode.Open);
    rtfHTML.Load(streamH, RichTextType.Html);
}
Private Sub Detail_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail.Format
    Dim streamR As New System.IO.FileStream(Application.StartupPath & "\sample.rtf", IO.FileMode.Open)
    rtfRTF.Load(streamR, RichTextType.Rtf)
    Dim streamH As New System.IO.FileStream(Application.StartupPath & "\sample.html", IO.FileMode.Open)
    rtfHTML.Load(streamH, RichTextType.Html)
End Sub
参照

関連項目

RichTextBox クラス
RichTextBox メンバ
Clear メソッド
RichTextType 列挙型

 

 


©2003-2015 GrapeCity inc. All rights reserved.