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

FillStyle() public method

The way how object like lines and shapes get filled.
public FillStyle ( byte InitialVersion ) : System
InitialVersion byte The version of the Swf file using this object.
return System
        public FillStyle(byte InitialVersion)
            : base(InitialVersion)
        {
            this._color = new Rgb(this._SwfVersion);
            this._gradientMatrix = new Matrix(this._SwfVersion);
            this._gradient = new Gradient(this._SwfVersion);
            this._bitmapMatrix = new Matrix(this._SwfVersion);
            this._caller = TagTypes.DefineShape;
        }