BitmapReader.Classes.MouseDragAction.MouseDragAction C# (CSharp) Method

MouseDragAction() public method

public MouseDragAction ( List points, bool discardOffset = false, Color color = null ) : System.Collections.Generic
points List
discardOffset bool
color System.Drawing.Color
return System.Collections.Generic
        public MouseDragAction(List<Point> points, bool discardOffset = false, Color? color = null)
        {
            this.Points = points;
            this.DiscardOffset = discardOffset;
            this.Color = color.HasValue ? color.Value : Color.Empty;
        }