
Overloaded. Saves the line's text in a byte array or as a string with a specified format.
[C#]
public void Save(out byte[] binaryData, BinaryStreamType binaryStreamType);
public void Save(out string stringData, StringStreamType stringStreamType);
public void Save(out byte[] binaryData, BinaryStreamType binaryStreamType, SaveSettings saveSettings);
public void Save(out string stringData, StringStreamType stringStreamType, SaveSettings saveSettings);
[Visual Basic]
Public Sub Save(ByRef binaryData As Byte(), ByVal binaryStreamType As BinaryStreamType)
Public Sub Save(ByRef stringData As String, ByVal stringStreamType As StringStreamType)
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)
| Member | Description | |
| binaryData | Specifies a byte array into which the line's text is saved. No memory needs to be allocated through the caller. | |
| stringData | Specifies a string into which the line's text is saved. No memory needs to be allocated through the caller. | |
| binaryStreamType | Specifies one of the BinaryStreamType values. | |
| stringStreamType | Specifies one of the StringStreamType values. | |
| saveSettings | Specifies a SaveSettings object with additional information and settings for the save operation. |