See Also

RichTextBox Class  | RichTextBox Members  | Clear Method  | RichTextType Enumeration

Language

Visual Basic

C#

Show All

stream
A stream of rich text data to be loaded into the control.
type

RichTextType enumeration.

See Also Languages ActiveReports Send feedback to Data Dynamics

Load Method

Loads the contents of a stream into the RichTextBox control.

[Visual Basic]
Public Sub Load( _    ByVal stream As Stream, _    ByVal type As RichTextType _ )
[C#]
public void Load(    Stream stream,    RichTextType type );

Parameters

stream
A stream of rich text data to be loaded into the control.
type

RichTextType enumeration.

Remarks

The data loaded from the stream replaces the existing text in the RichTextBox.

Example

To use this sample code, you will need a sample.rtf file and a sample.html file as well as two RichTextBox controls on an ActiveReport.

[C#] 

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); 
}

[Visual Basic] 

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

See Also

RichTextBox Class  | RichTextBox Members  | Clear Method  | RichTextType Enumeration

 

 


Copyright © 2004-2005 Data Dynamics, Ltd. All rights reserved.