Loads barcode data into the control.

Load(String)

public void Load(string fileName);

Load(System.IO.Stream)

public void Load(System.IO.Stream stream);

Load(System.IO.TextReader)

public void Load(System.IO.TextReader textReader);

Load(System.Xml.XmlReader)

public void Load(System.Xml.XmlReader xmlReader);

Parameters

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