Evbpc.Framework.Drawing.PointF.operator C# (CSharp) Method

operator() public static method

Offsets a PointF object by the specified Size.
public static operator ( ) : PointF
return PointF
        public static PointF operator +(PointF pt, Size sz) => new PointF(pt.X + sz.Width, pt.Y + sz.Height);

Same methods

PointF::operator ( ) : bool