[]
Loads the content of the current RenderRichText from a disk file containing RTF-formatted data.
public void Load(string fileName)
| Type | Name | Description |
|---|---|---|
| string | fileName | The name of the file to load. |
Loads the content of the current RenderRichText from a disk file containing data in a specified format.
public void Load(string fileName, RichTextBoxStreamType streamType)
| Type | Name | Description |
|---|---|---|
| string | fileName | The name of the file to load. |
| RichTextBoxStreamType | streamType | The type of data in the file. |
Loads the content of the current RenderRichText from a stream containing RTF-formatted data.
public void Load(Stream stream)
| Type | Name | Description |
|---|---|---|
| Stream | stream | The stream to load data from. |
Loads the content of the current RenderRichText from a stream containing data in a specified format.
public void Load(Stream stream, RichTextBoxStreamType streamType)
| Type | Name | Description |
|---|---|---|
| Stream | stream | The stream to load data from. |
| RichTextBoxStreamType | streamType | The type of data in the stream. |