Share via


ElectronicJournal.Station Property (POS for .NET v1.12 SDK Documentation)

2/27/2008

Gets or sets the station for later data storing into the medium.

Namespace: Microsoft.PointOfService
Assembly: Microsoft.PointOfService (in microsoft.pointofservice.dll)

Syntax

'Declaration
Public MustOverride Property Station As ElectronicJournalStations
public abstract ElectronicJournalStations Station { get; set; }
public:
virtual property ElectronicJournalStations Station {
    ElectronicJournalStations get () abstract;
    void set (ElectronicJournalStations value) abstract;
}
/** @property */
public abstract ElectronicJournalStations get_Station ()

/** @property */
public abstract void set_Station (ElectronicJournalStations value)
public abstract function get Station () : ElectronicJournalStations

public abstract function set Station (value : ElectronicJournalStations)

Remarks

Set the station for later data storing into the medium. Station is a logical OR combination of any of the following values.

Value

Meaning

Receipt

Captures data output into receipt station of PosPrinter and stores it into the medium.

Slip

Captures data output into slip station of PosPrinter and stores it into the medium.

Journal

Captures data output into journal station of PosPrinter and stores it into the medium.

This property is initialized to Receipt**by the Open method.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread-safe. Any instance members are not guaranteed to be thread-safe.

See Also

Reference

ElectronicJournal Class
ElectronicJournal Members
Microsoft.PointOfService Namespace
ElectronicJournal.CapStation Property