NSGraphicsContext:setPatternPhase:
Home 目次>ApplicationKit>NSGraphicsContext

setPatternPhase:

レシーバを塗るときのオフセット値をセットします


-(void) setPatternPhase(NSPoint)


【返り値】
   voidなし


【解説】

レシーバを塗るときのオフセット値をセットします。



【例文】


#import "Controller.h"

@implementation Controller

- (
IBAction )pushButton:( id )sender
{
NSPoint point;

[[NSApp context] setPatternPhase:NSMakePoint(
5.0 , 1.0 )];
point = [[NSApp context] patternPhase];

NSLog([NSString stringWithFormat:
@"%f,%f" ,point.x,point.y]);
}


@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