Remarks
The methods opening a dialog box are not available through the Selection object of a Server
Saves the selected text of a document with the specified format.
public DialogResult Save();
public DialogResult Save(StreamType streamType);
public void Save(string path, StreamType streamType);
public void Save(System.IO.FileStream fileStream, StreamType streamType);
public void Save(out byte[] binaryData, BinaryStreamType binaryStreamType);
public void Save(out string stringData, StringStreamType stringStreamType);
public DialogResult Save(StreamType streamType, SaveSettings saveSettings);
public void Save(string path, StreamType streamType, SaveSettings saveSettings);
public void Save(System.IO.FileStream fileStream, StreamType streamType, SaveSettings saveSettings);
public void Save(out byte[] binaryData, BinaryStreamType binaryStreamType, SaveSettings saveSettings);
public void Save(out string stringData, StringStreamType stringStreamType, SaveSettings saveSettings);
Parameter | Description |
---|---|
stream |
Specifies one of the Stream |
path | Specifies a file into which the selection is saved. If the file does not exist, it is created. If the file exists, its contents are overwritten. |
file |
Specifies a file into which the selection is saved. The data is saved at the stream's current position. |
binary |
Specifies a byte array into which the selection is saved. No memory needs to be allocated through the caller. |
string |
Specifies a string into which the selection is saved. No memory needs to be allocated through the caller. |
binary |
Specifies one of the Binary |
string |
Specifies one of the String |
save |
Specifies a Save |
The implementations which open a dialog box return a Selection.
The methods opening a dialog box are not available through the Selection object of a Server