AnimatGuiCtrls.Collections.KeyFrameCollection.Draw C# (CSharp) Method

Draw() public method

public Draw ( Graphics g ) : void
g System.Drawing.Graphics
return void
        public void Draw(Graphics g)
        {
            if(_CurrentFrame != null)
                _CurrentFrame.Draw(g, _Ruler);

            foreach(KeyFrame frame in _aryMulitFrames)
                frame.Draw(g, _Ruler);

            foreach(KeyFrame frame in _arySingleFrames)
                frame.Draw(g, _Ruler);
        }