LongoMatch.Core.Store.TimelineNode.HasFrame C# (CSharp) Method

HasFrame() public method

Check if the frame number is inside the play boundaries
public HasFrame ( int frame ) : bool
frame int /// A with the frame number ///
return bool
        public bool HasFrame(int frame)
        {
            return (frame >= StartFrame && frame < StopFrame);
        }