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

SetTimes() public method

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

            _StartMillisecond = lStart;
            _EndMillisecond = lStart;
        }

Same methods

KeyFrame::SetTimes ( long lStart, long lEnd ) : void