Longkong.ColorPicker.Controls.ColorSpace.ResetComponents C# (CSharp) Method

ResetComponents() private method

Sets the selected property of the color space components to false.
private ResetComponents ( ) : void
return void
        internal void ResetComponents()
        {
            foreach( ColorSpaceComponent csc in m_colorSpaceComponents ) {
                csc.Selected = false;
            }
        }