Table of Contents

Interface ITouchUserInterfaceService

Namespace
Acuit.Pinpoint.Workstation
Assembly
Acuit.Pinpoint.Workstation.Interfaces.dll

Touch-oriented user interface service provided by the workstation to plug-ins.

public interface ITouchUserInterfaceService

Remarks

This augments the IUserInterfaceService interface.

Methods

GetKeypadInput(string)

Gets keypad input from the operator.

string GetKeypadInput(string prompt)

Parameters

prompt string

The prompt to display to the user in the keypad window.

Returns

string

The input value, or null if the operator canceled the input.

GetKeypadInput(string, int)

Gets keypad input from the operator.

string GetKeypadInput(string prompt, int maxInputLength)

Parameters

prompt string

The prompt to display to the user in the keypad window.

maxInputLength int

The maximum length, in characters, of the input value, or 0 to not limit the input length.

Returns

string

The input value, or null if the operator canceled the input.