NSDrawGrayBezel
へこんだボタンを描きます
void NSDrawGrayBezel (
NSRect aRect ,
NSRect clipRect );
解説
へこんだボタンを描きます
void NSDrawGrayBezel(NSRect aRect, NSRect clipRect)
返り値
引数
( NSRect )aRect
( NSRect )clipRect
フレームワーク
ApplicationKit
クラス
NSDrawGrayBezel
Function
使用可能
10.0
参照
例文
#import "MyView.h" //NSViewのサブクラスMyView //drawRectをオーバーライド @implementation MyView - (void)drawRect:(NSRect)frameRect { NSDrawGrayBezel(NSMakeRect(10,10,200,200),NSMakeRect(10,10,200,200)); } @end