Class constructor.

Namespace: Ico.Windows.Media.Media3D
Assembly: Ico3DControlsLibrary (in Ico3DControlsLibrary.dll) Version: 10.97.212.0 (10.97.212.00)

Syntax

C#
public PeriodicMouseUpdates(
	FrameworkElement e,
	int updateRate
)
Visual Basic
Public Sub New ( _
	e As FrameworkElement, _
	updateRate As Integer _
)
JScript
public function PeriodicMouseUpdates(
	e : FrameworkElement, 
	updateRate : int
)

Parameters

e
Type: System.Windows..::..FrameworkElement
UI element that contains the class instance. This is necessary to obtain a displatcher. If this parameter is null, the continuous mouse updates will not be properly issued.
updateRate
Type: System..::..Int32
Time in milliseconds between consecutive updates. This value must be greater than or equal to 1. Otherwise, the default value (41) is used.

See Also