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

DefineMorphShape() public method

The DefineMorphShape tag defines the start and end states of a morph sequence
public DefineMorphShape ( byte InitialVersion ) : System
InitialVersion byte The version of the Swf file using this object.
return System
        public DefineMorphShape(byte InitialVersion)
            : base(InitialVersion)
        {
            this._startBounds = new Rect(this._SwfVersion);
            this._endBounds = 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);
        }