RtfDomParser.RTFColorTable.Remove C# (CSharp) Метод

Remove() публичный Метод

delete special color
public Remove ( System c ) : void
c System color value
Результат void
        public void Remove( System.Drawing.Color c )
        {
            int index = IndexOf( c );
            if( index >= 0 )
                myItems.RemoveAt( index );
        }