Exchanges the currently selected text with text in a certain format.

Load(String, Web.StreamType)

public void Load(string path, Web.StreamType streamType);

Load(System.IO.FileStream, Web.StreamType)

public void Load(System.IO.FileStream fileStream, Web.StreamType streamType);

Load(Byte[], Web.BinaryStreamType)

public void Load(byte[] binaryData, Web.BinaryStreamType binaryStreamType);

Load(String, Web.StringStreamType)

public void Load(string stringData, Web.StringStreamType stringStreamType);

Parameters

Parameter Description
streamType Specifies one of the StreamType values.
path Specifies a file from which the data is loaded.
fileStream Specifies a file from which the data is loaded. The data is loaded from the stream's current position.
binaryData Specifies a byte array from which the data is loaded.
stringData Specifies a string from which the data is loaded.
binaryStreamType Specifies one of the BinaryStreamType values.
stringStreamType Specifies one of the StringStreamType values.