NSGraphicsContext:graphicsContextWithWindow:
Home 目次>ApplicationKit>NSGraphicsContext このサイトはこちらに移転しました。

graphicsContextWithWindow:

ウインドウに描画するためにコンテキストを作って返します


+(NSGraphicsContext *) graphicsContextWithWindow:(NSWindow *)aWindow


【返り値】
   NSGraphicsContext *グラフィックス・コンテキスト
【パラメータ】
   aWindowウインドウ


【解説】

ウインドウに描画するためにコンテキストを作って返します。



【例文】


#import "Controller.h"

@implementation Controller

- (
IBAction )pushButton:( id )sender
{
NSGraphicsContext *gCon =
[NSGraphicsContext graphicsContextWithWindow:[sender window] ];
switch ([gCon imageInterpolation]){

case NSImageInterpolationDefault:
NSLog(
@"NSImageInterpolationDefault" );
break ;
case NSImageInterpolationNone:
NSLog(
@"NSImageInterpolationNone" );
break ;
case NSImageInterpolationLow:
NSLog(
@"NSImageInterpolationLow" );
break ;
case NSImageInterpolationHigh:
NSLog(
@"NSImageInterpolationHigh" );
break ;
}

}


@end


(C) 2000-2009 Satoshi Oomori.
[Apple]

Google
Webwww.oomori.com
Apple_Store_40x120

[ad:Usual day in Japan]

この記事を評価してください。 

良い 

間違いがある 説明がわかりにくい 例文がわかりにくい  

Home 目次>ApplicationKit>NSGraphicsContext
修正日2006.12.26