Barcode Xpress for .NET Framework v14.0 - Updated
Accusoft.BarcodeXpressSdk Namespace / BarcodeXpress Class / Performance Property
Example




In This Topic
    Performance Property
    In This Topic
    Gets the barcode capability and performance for the system.
    Syntax
    'Declaration
     
    <BrowsableAttribute(True)>
    <ObsoleteAttribute("This property has been marked for deprecation.")>
    Public ReadOnly Property Performance As String
    'Usage
     
    Dim instance As BarcodeXpress
    Dim value As String
     
    value = instance.Performance
    [Browsable(true)]
    [Obsolete("This property has been marked for deprecation.")]
    public string Performance {get;}
    [Browsable(true)]
    [Obsolete("This property has been marked for deprecation.")]
    public: __property string* get_Performance();
    [Browsable(true)]
    [Obsolete("This property has been marked for deprecation.")]
    public:
    property String^ Performance {
       String^ get();
    }

    Property Value

    A string which represents the performance of the barcode.
    Remarks

    This property is obsolete and marked for deprecation.

    Example
    ...
    // Get the Performance and put in the string perf
    string perf = bcXpress.Performance
    ...
    See Also