Gets and sets the Y coordinate of the point.
# Get the value of the property.propertyValue = point2D_var.y# Set the value of the property.point2D_var.y = propertyValue
#include <Core/Geometry/Point2D.h>// Get the value of the property.double propertyValue = point2D_var->y();// Set the value of the property, where value_var is a double.bool returnValue = point2D_var->y(value_var);