Barcode Xpress for .NET Core v14.0 - Updated
Accusoft.BarcodeXpressSdk Namespace / BarcodeXpress Class / BarcodeXpress Constructor / BarcodeXpress Constructor(String)
The directory that will hold the extracted SSM file




In This Topic
    BarcodeXpress Constructor(String)
    In This Topic
    An alternate constructor that specifies the directory where the embedded SSM resource will be extracted.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal ssmDirectory As String _
    )
    'Usage
     
    
    Dim ssmDirectory As String
     
    Dim instance As New BarcodeXpress(ssmDirectory)
    public BarcodeXpress( 
       string ssmDirectory
    )
    public: BarcodeXpress( 
       string* ssmDirectory
    )
    public:
    BarcodeXpress( 
       String^ ssmDirectory
    )

    Parameters

    ssmDirectory
    The directory that will hold the extracted SSM file
    Remarks

    Barcode Xpress compresses and stores some of its code in the "native component". The native component comes in several forms. Barcode Xpress loads the native component using the SSMLoader which then extracts the native component in the form of a compressed SSM file to a directory you specify.

    Notes:

    If the native component is already at the location you specified, it will not be overwritten.

    If you are upgrading from one minor version to another, be sure to delete these files or Barcode Xpress will still be using the native component from the previous version. You can use 'BarcodeXpress(string ssmDirectory)' constructor for this case.

    See Also