ScreenToWorld(PointF,DicomViewer) Method
Calculate where in real world (X,Y,Z) space, a given screen point lies
public System.Nullable<Point3D> ScreenToWorld(
System.Drawing.PointF ,
DicomViewer
)
public function ScreenToWorld(
: System.Drawing.PointF;
: DicomViewer
): System.Nullable;
public function ScreenToWorld(
: System.Drawing.PointF,
: DicomViewer
) : System.Nullable;
public: System.Nullable<Point3D> ScreenToWorld(
System.Drawing.PointF ,
DicomViewer*
)
public:
System.Nullable<Point3D> ScreenToWorld(
System.Drawing.PointF ,
DicomViewer^
)
'Declaration
Public Function ScreenToWorld( _
ByVal As System.Drawing.PointF, _
ByVal As DicomViewer _
) As System.Nullable(Of Point3D)
'Usage
Dim instance As DicomImage
Dim ScreenLocation As System.Drawing.PointF
Dim Viewer As DicomViewer
Dim value As System.Nullable(Of Point3D)
value = instance.ScreenToWorld(ScreenLocation, Viewer)
Parameters
- ScreenLocation
- The point on the output space
- Viewer
- The Viewer being used for display
Return Value
Point in 3D space if appropriate, or null, if the necessary coordinate
information is not available
Target Platforms: .NET CLR 4.8 or higher