PurplePen.RectSpecialCourseObj.RectSpecialCourseObj C# (CSharp) Method

RectSpecialCourseObj() public method

public RectSpecialCourseObj ( Id specialId, CourseAppearance appearance, SpecialColor color, LineKind lineKind, float lineWidth, float cornerRadius, float gapSize, float dashSize, RectangleF rect ) : System
specialId Id
appearance CourseAppearance
color SpecialColor
lineKind LineKind
lineWidth float
cornerRadius float
gapSize float
dashSize float
rect System.Drawing.RectangleF
return System
        public RectSpecialCourseObj(Id<Special> specialId, CourseAppearance appearance, SpecialColor color, LineKind lineKind, float lineWidth, float cornerRadius, float gapSize, float dashSize, RectangleF rect)
            : base(Id<ControlPoint>.None, Id<CourseControl>.None, specialId, 1.0F, appearance, rect)
        {
            this.color = color;
            this.lineKind = lineKind;
            this.lineWidth = lineWidth;
            this.cornerRadius = cornerRadius;
            this.gapSize = gapSize;
            this.dashSize = dashSize;
        }