BrightIdeasSoftware.ObjectListView.PauseAnimations C# (CSharp) Method

PauseAnimations() public method

Pause (or unpause) all animations in the list
public PauseAnimations ( bool isPause ) : void
isPause bool true to pause, false to unpause
return void
        public virtual void PauseAnimations(bool isPause)
        {
            for (int i = 0; i < this.Columns.Count; i++) {
                OLVColumn col = this.GetColumn(i);
                ImageRenderer renderer = col.Renderer as ImageRenderer;
                if (renderer != null)
                    renderer.Paused = isPause;
            }
        }
ObjectListView