Saves the barcode data.

Save(String)

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

Save(System.IO.Stream)

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

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 the is saved to.
stream Specifies an object of type System.IO.Stream the data is saved to.
textWriter Specifies an object of type System.IO.TextWriter the data is saved to.
xmlWriter Specifies an object of type System.IO.XmlWriter the data is saved to.