Loads barcode data into the control.

Load(String)

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

Load(String, TXTextControl.Barcode.SerializationFormat)

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

Load(System.IO.Stream)

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

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

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

Load(System.IO.TextReader)

public void Load(System.IO.TextReader textReader);
Public Sub Load(ByVal textReader As System.IO.TextReader)

Load(System.Xml.XmlReader)

public void Load(System.Xml.XmlReader xmlReader);
Public Sub Load(ByVal xmlReader As System.Xml.XmlReader)

Parameters

Parameter Description
fileName Specifies a file from which the data is loaded.
format Specifies the format used to deserialize the barcode.
stream Specifies an object of type System.IO.Stream from which the data is loaded. The data is loaded from the stream's current position.
textReader Specifies an object of type System.IO.TextReader from which the data is loaded.
xmlReader Specifies an object of type System.IO.XmlReader from which the data is loaded.