IManipulationProcessor::ProcessUp method (manipulations.h)

The ProcessUp method feeds data to a target's manipulation processor for touch up sequences.

Syntax

HRESULT ProcessUp(
  MANIPULATOR_ID manipulatorId,
  FLOAT          x,
  FLOAT          y
);

Parameters

manipulatorId

The identifier for the touch contact that you want to process.

x

The horizontal coordinate data associated with the target.

y

The vertical coordinate data associated with the target.

Return value

Returns S_OK on success, otherwise returns an error code such as E_FAIL.

Remarks

This method takes a timestamp using system time rather than from the touch hardware. To improve the experience in cases where performance is degrading you should use the ProcessUpWithTime method.

Requirements

Requirement Value
Minimum supported client Windows 7 [desktop apps only]
Minimum supported server Windows Server 2008 R2 [desktop apps only]
Target Platform Windows
Header manipulations.h (include Manipulations_i.c)

See also

IManipulationProcessor

Methods

ProcessDown

ProcessMove

ProcessUpWithTime