Recurity.Swf.LineStyle2.LineStyle2 C# (CSharp) Method

LineStyle2() public method

LINESTYLE2 builds upon the capabilities of the LINESTYLE record by allowing the use of new types of joins and caps as well as scaling options and the ability to fill a stroke.
public LineStyle2 ( byte InitialVersion ) : System
InitialVersion byte The version of the Swf file using this object.
return System
        public LineStyle2(byte InitialVersion)
            : base(InitialVersion)
        {
            this._startCapStyle = CapStyle.None;
            this._joinstyle = JoinStyle.Round;
            this._endCapStyle = CapStyle.None;
            this._color = new Rgba(this._SwfVersion);
            this._fillStyle = new FillStyle(this._SwfVersion);
        }