VisioForge (c) 2025

Search Results for

    Class BarcodeDetectorEventArgs

    Barcode detector event args for X engine.

    Inheritance
    object
    EventArgs
    BarcodeDetectorEventArgs
    Inherited Members
    EventArgs.Empty
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: VisioForge.Core.Types.X
    Assembly: VisioForge.Core.dll
    Syntax
    public class BarcodeDetectorEventArgs : EventArgs

    Constructors

    BarcodeDetectorEventArgs(string, string, TimeSpan)

    Initializes a new instance of the BarcodeDetectorEventArgs class.

    Declaration
    public BarcodeDetectorEventArgs(string barcodeType, string value, TimeSpan timeStamp)
    Parameters
    Type Name Description
    string barcodeType

    Barcode type.

    string value

    Barcode value.

    TimeSpan timeStamp

    Timestamp.

    Properties

    BarcodeType

    Gets the barcode type.

    Declaration
    public string BarcodeType { get; }
    Property Value
    Type Description
    string

    Timestamp

    Gets the timestamp.

    Declaration
    public TimeSpan Timestamp { get; }
    Property Value
    Type Description
    TimeSpan

    Value

    Gets the barcode value.

    Declaration
    public string Value { get; }
    Property Value
    Type Description
    string