Remarks
The methods opening a dialog box are not available through the Selection object of a Server
Exchanges the currently selected text with text in a certain format.
public DialogResult Load();
public DialogResult Load(StreamType streamType);
public void Load(string path, StreamType streamType);
public void Load(System.IO.FileStream fileStream, StreamType streamType);
public void Load(byte[] binaryData, BinaryStreamType binaryStreamType);
public void Load(string stringData, StringStreamType stringStreamType);
public DialogResult Load(StreamType streamType, LoadSettings loadSettings);
public void Load(string path, StreamType streamType, LoadSettings loadSettings);
public void Load(System.IO.FileStream fileStream, StreamType streamType, LoadSettings loadSettings);
public void Load(byte[] binaryData, BinaryStreamType binaryStreamType, LoadSettings loadSettings);
public void Load(string stringData, StringStreamType stringStreamType, LoadSettings loadSettings);
Parameter | Description |
---|---|
stream |
Specifies one of the Stream |
path | Specifies a file from which the data is loaded. |
file |
Specifies a file from which the data is loaded. The data is loaded from the stream's current position. |
binary |
Specifies a byte array from which the data is loaded. |
string |
Specifies a string from which the data is loaded. |
binary |
Specifies one of the Binary |
string |
Specifies one of the String |
load |
Specifies a Load |
The implementations which open a dialog box return a Selection.
The following examples show the usage of the Selection.
textControl1.Load ("..\\..\\TestFiles\\Caption.rtf",
TXTextControl.StreamType.RichTextFormat);
textControl1.Selection.Start = textControl1.Text.Length;
textControl1.Selection.Load ("..\\..\\TestFiles\\Net.htm",
TXTextControl.StreamType.HTMLFormat);
The methods opening a dialog box are not available through the Selection object of a Server