SignatureCapture.DataEvent Event
2/27/2008
Raised by the service object to notify the application that input data is available.
Namespace: Microsoft.PointOfService
Assembly: Microsoft.PointOfService (in microsoft.pointofservice.dll)
Syntax
'Declaration
Public Event DataEvent As DataEventHandler
public abstract event DataEventHandler DataEvent
public:
virtual event DataEventHandler^ DataEvent {
void add (DataEventHandler^ value) abstract;
void remove (DataEventHandler^ value) abstract;
}
/** @event */
public abstract void add_DataEvent (DataEventHandler value)
/** @event */
public abstract void remove_DataEvent (DataEventHandler value)
Remarks
DataEvent can only be queued if the user can terminate the signature--that is, if CapUserTerminated or RealTimeDataEnabled is true.
DataEventArgs.Status contains true if the user entered a signature before terminating capture. Status contains false if the user terminated capture with no signature.
Before triggering a DataEvent event, the PointArray and RawData properties are set to appropriate values.
See Also
Reference
SignatureCapture Class
SignatureCapture Members
Microsoft.PointOfService Namespace
SignatureCapture.EndCapture Method