Monobjc.AppKit.NSColor.operator C# (CSharp) Method

operator() public static method

Returns an NSColor object that represents a blend between the receiver and the highlight color returned by highlightColor.

Original signature is '- (NSColor *)highlightWithLevel:( CGFloat)highlightLevel'

Available in Mac OS X v10.0 and later.

public static operator ( ) : NSColor
return NSColor
        public static NSColor operator *(NSColor color, float highlightLevel)
        {
            return color.HighlightWithLevel(highlightLevel);
        }