Saves the barcode data.

Save(String)

public void Save(string fileName);
Public Sub Save(ByVal fileName As String)

Save(String, TXTextControl.Barcode.SerializationFormat)

public void Save(string fileName, TXTextControl.Barcode.SerializationFormat format);
Public Sub Save(ByVal fileName As String, ByVal format As TXTextControl.Barcode.SerializationFormat)

Save(System.IO.Stream)

public void Save(System.IO.Stream stream);
Public Sub Save(ByVal stream As System.IO.Stream)

Save(System.IO.Stream, TXTextControl.Barcode.SerializationFormat)

public void Save(System.IO.Stream stream, TXTextControl.Barcode.SerializationFormat format);
Public Sub Save(ByVal stream As System.IO.Stream, ByVal format As TXTextControl.Barcode.SerializationFormat)

Save(System.IO.TextWriter)

public void Save(System.IO.TextWriter textWriter);
Public Sub Save(ByVal textWriter As System.IO.TextWriter)

Save(System.Xml.XmlWriter)

public void Save(System.Xml.XmlWriter xmlWriter);
Public Sub Save(ByVal xmlWriter As System.Xml.XmlWriter)

Parameters

Parameter Description
fileName Specifies a file into which the data is saved.
format Specifies the format used to serialize the barcode.
stream Specifies an object of type System.IO.Stream into which the data is saved.
textWriter Specifies an object of type System.IO.TextWriter into which the data is saved.
xmlWriter Specifies an object of type System.IO.XmlWriter into which the data is saved.