Barcode Xpress for .NET Framework v14.0 - Updated
Accusoft.BarcodeXpressSdk Namespace / BarcodeXpress Class / ReadFromStream Method
A stream that the method created




In This Topic
    ReadFromStream Method
    In This Topic
    Reads a specially-formatted stream and places the values into properties of this object.
    Syntax
    'Declaration
     
    <BrowsableAttribute(True)>
    Public Sub ReadFromStream( _
       ByVal streamIn As String _
    ) 
    'Usage
     
    Dim instance As BarcodeXpress
    Dim streamIn As String
     
    instance.ReadFromStream(streamIn)
    [Browsable(true)]
    public void ReadFromStream( 
       string streamIn
    )
    [Browsable(true)]
    public: void ReadFromStream( 
       string* streamIn
    ) 
    [Browsable(true)]
    public:
    void ReadFromStream( 
       String^ streamIn
    ) 

    Parameters

    streamIn
    A stream that the method created
    Remarks

    This method reads a stream, which contains the values of properties for this object. It provides a convenient way to store and retrieve the values and preserves as much future compatibility as possible.

    This method should read any stream that the WriteToStream method created, even if an older version of this component created it.

    Note: You should retrieve the value for the stream from the Construction property of a FormDirector FormDefinition object. When the Type property of that object is "BarcodeXpress", the Content property contains a string that you should send to this method.

    See Also