Workflow.Activity.GetPos C# (CSharp) Method

GetPos() public method

public GetPos ( ) : Point
return Point
        public Point GetPos()
        {
            Point p = new Point();
            p.X = pos;
            p.Y = actor.GetY();
            return p;
        }