RtfDomParser.RTFColorTable.Remove C# (CSharp) Méthode

Remove() public méthode

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