| Syntax: |
|
[C#]
public DialogResult Save();
public DialogResult Save(StreamType streamType);
public void Save(string path, StreamType streamType);
public void Save(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(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);
[Visual Basic]
Public Function Save() As DialogResult
Public Function Save(ByVal streamType As StreamType) As DialogResult
Public Sub Save(ByVal path As String, ByVal streamType As StreamType)
Public Sub Save(ByVal fileStream As FileStream, ByVal streamType As StreamType)
Public Sub Save(ByRef binaryData As Byte(), ByVal binaryStreamType As BinaryStreamType)
Public Sub Save(ByRef stringData As String, ByVal stringStreamType As StringStreamType)
Public Function Save(ByVal streamType As StreamType, ByVal saveSettings As SaveSettings) As DialogResult
Public Sub Save(ByVal path As String, ByVal streamType As StreamType, ByVal saveSettings As SaveSettings)
Public Sub Save(ByVal fileStream As FileStream, ByVal streamType As StreamType, ByVal saveSettings As SaveSettings)
Public Sub Save(ByRef binaryData As Byte(), ByVal binaryStreamType As BinaryStreamType, ByVal saveSettings As SaveSettings)
Public Sub Save(ByRef stringData As String, ByVal stringStreamType As StringStreamType, ByVal saveSettings As SaveSettings)
|