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

Shape() public method

The SHAPE structure defines a shape without fill style or line style information.
public Shape ( byte InitialVersion ) : System
InitialVersion byte The version of the Swf file using this object.
return System
        public Shape(byte InitialVersion)
            : base(InitialVersion)
        {
            this._shapeRecordBuffer = new byte[0];
            this._shapeRecords = new List<ShapeRecord>();
            this._fillStyles = new FillStyleArray(this._SwfVersion);
            this._lineStyles = new LineStyleArray(this._SwfVersion);
        }