Saves the line's text with the specified format.
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);
Parameter | Description |
---|---|
binary |
Specifies a byte array into which the line's text is saved. No memory needs to be allocated through the caller. |
string |
Specifies a string into which the line's text 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 |
This example shows an easy use of the 'TXText
byte[] binaryData;
foreach (TXTextControl.Line line in textControl1.Lines) {
line.Save(out binaryData, TXTextControl.BinaryStreamType.InternalFormat);
}