'宣言
Public Sub Load( _ ByVal stream As Stream, _ ByVal type As RichTextType _ )
public void Load( Stream stream, RichTextType type )
パラメータ
- stream
- ストリームの内容。
- type
RichTextType列挙体:rtf、htmlまたはText
RichTextType列挙体:rtf、htmlまたはText
'宣言
Public Sub Load( _ ByVal stream As Stream, _ ByVal type As RichTextType _ )
public void Load( Stream stream, RichTextType type )
RichTextType列挙体:rtf、htmlまたはText
ストリームからロードしたデータは、RichTextBoxの内容全体を置換します。
本バージョンで動作がサポートされるのはRtf形式のみです。HtmlやTextファイルのロードには対応していません。
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 列挙型