Click or drag to resize

WindowsUtilitiesPhysicalToLogicalPoint Method

Converts the physical coordinates of a point in a window to logical coordinates.

Namespace:  callback.ShellBoost.Core.Utilities
Assembly:  callback.CBFSShell (in callback.CBFSShell.dll) Version: 22.0.0.0
Syntax
C#
public static POINT? PhysicalToLogicalPoint(
	IntPtr handle,
	POINT point
)

Parameters

handle
Type: SystemIntPtr
A handle to the window whose transform is used for the conversion. Top level windows are fully supported. In the case of child windows, only the area of overlap between the parent and the child window is converted.
point
Type: callback.ShellBoost.Core.WindowsShellPOINT
A POINT that specifies the physical/screen coordinates to be converted.

Return Value

Type: NullablePOINT
A POINT if the call succeeded otherwise null.
See Also