ITrackerStateListener OnScreenStatesChanged Method C# SDK for The Eye Tribe Tracker
A notification call back indicating that main screen index has changed. This is only relevant for multiscreen setups. Implementing classes should update themselves accordingly if needed. Register for updates through GazeManager.AddTrackerStateListener().

Namespace: TETCSharpClient
Assembly: TETCSharpClient (in TETCSharpClient.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
void OnScreenStatesChanged(
	int screenIndex,
	int screenResolutionWidth,
	int screenResolutionHeight,
	float screenPhysicalWidth,
	float screenPhysicalHeight
)

Parameters

screenIndex
Type: System Int32
the currently valid screen index
screenResolutionWidth
Type: System Int32
screen resolution width in pixels
screenResolutionHeight
Type: System Int32
screen resolution height in pixels
screenPhysicalWidth
Type: System Single
Physical screen width in meters
screenPhysicalHeight
Type: System Single
Physical screen height in meters
See Also