Skip to content

Latest commit

 

History

History
46 lines (39 loc) · 1.08 KB

point-structure1.md

File metadata and controls

46 lines (39 loc) · 1.08 KB
title ms.custom ms.date ms.reviewer ms.suite ms.technology ms.tgt_pltfrm ms.topic f1_keywords dev_langs helpviewer_keywords ms.assetid caps.latest.revision author ms.author manager
POINT Structure1 | Microsoft Docs
11/04/2016
cpp-windows
article
POINT
LPPOINT
C++
LPPOINT structure [MFC]
POINT structure [MFC]
965736d8-4e53-41b6-9b8b-6961992dd21f
13
mikeblome
mblome
ghogen

POINT Structure1

The POINT structure defines the x*-* and y-coordinates of a point.

Syntax

typedef struct tagPOINT {  
    LONG x;  
    LONG y;  
} POINT;  

Parameters

x
Specifies the x-coordinate of a point.

y
Specifies the y-coordinate of a point.

Example

[!code-cppNVC_MFC_Utilities#37]

Requirements

Header: windef.h

See Also

Structures, Styles, Callbacks, and Message Maps
CPoint Class