Recurity.Swf.TagHandler.DefineMorphShape2.DefineMorphShape2 C# (CSharp) Method

DefineMorphShape2() public method

The DefineMorphShape2 tag defines the start and end states of a morph sequence
public DefineMorphShape2 ( byte InitialVersion ) : System
InitialVersion byte The version of the Swf file using this object.
return System
        public DefineMorphShape2(byte InitialVersion)
            : base(InitialVersion)
        {
            this._startBounds = new Rect(this._SwfVersion);
            this._endBounds = new Rect(this._SwfVersion);
            this._startEdgeBounds = new Rect(this._SwfVersion);
            this._endEdgeBounds = new Rect(this._SwfVersion);
            this._morphFillStyles = new MorphFillStyleArray(this._SwfVersion);
            this._morphLineStyles = new MorphLineStyleArray(this._SwfVersion);
            this._startEdges = new Shape(this._SwfVersion);
            this._endEdges = new Shape(this._SwfVersion);
        }