AnimatGuiCtrls.Controls.KeyFrame.SetTimes C# (CSharp) Method

SetTimes() public method

public SetTimes ( long lStart, long lEnd ) : void
lStart long
lEnd long
return void
        public virtual void SetTimes(long lStart, long lEnd)
        {
            if(lStart < 0 || lEnd < 0)
                throw new System.Exception("The start/end millisecond time for a keyframe can not be less than zero.");

            _StartMillisecond = lStart;
            _EndMillisecond = lStart;
        }

Same methods

KeyFrame::SetTimes ( long lStart ) : void