RtfDomParser.RTFColorTable.Remove C# (CSharp) Method

Remove() public method

delete special color
public Remove ( System c ) : void
c System color value
return void
        public void Remove( System.Drawing.Color c )
        {
            int index = IndexOf( c );
            if( index >= 0 )
                myItems.RemoveAt( index );
        }