Monobjc.AppKit.NSColor.operator C# (CSharp) 메소드

operator() 공개 정적인 메소드

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
리턴 NSColor
        public static NSColor operator *(NSColor color, float highlightLevel)
        {
            return color.HighlightWithLevel(highlightLevel);
        }