NSGraphicsContext:setFocusStack:
Home 目次>ApplicationKit>NSGraphicsContext

setFocusStack:

グラフィックコンテキストにセットします


-(void) setFocusStack:(void *)stack


【返り値】
   voidなし
【パラメータ】
   stack


【解説】

グラフィックコンテキストにセットします。



【例文】


#import "Controller.h"

@implementation Controller

- (
IBAction )pushButton:( id )sender
{
NSGraphicsContext *gCon =
[NSGraphicsContext graphicsContextWithWindow:[sender window] ];
NSDictionary *dic =
[NSDictionary dictionaryWithObjectsAndKeys:
@"NSWindow" , @"NSGraphicsContextDestinationAttributeName" ,
@"NSGraphicsContextPDFFormat" , @"NSGraphicsContextRepresentationFormatAttributeName" ,
nil ];

NSGraphicsContext *gCon2 = [NSGraphicsContext graphicsContextWithAttributes:dic];
void *gConPointer;

gConPointer = [gCon focusStack];


[gCon2 setFocusStack:gConPointer];


NSLog([NSString stringWithFormat:
@"%d" ,gConPointer]);

}


@end


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

Google
Webwww.oomori.com
Apple_Store_40x120

[ad:Usual day in Japan]

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

良い 

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

Home 目次>ApplicationKit>NSGraphicsContext
修正日2006.12.26