| Home 目次>ApplicationKit>NSGradient | 10.5 |
drawFromPoint:toPoint:options:
指定した点から点までの帯状のグラデーションを返します
-(void) drawFromPoint:(NSPoint)startingPoint
toPoint:(NSPoint)endingPoint
options:(NSGradientDrawingOptions)options
【返り値】 | |
| void | なし |
| 【パラメータ】 | |
| startingPoint | |
| endingPoint | |
| options |
【解説】
指定した点から点までの帯状のグラデーションを返します。
【例文】
#import "MyObject.h"
@implementation MyObject
- (IBAction)myAction:(id)sender
{
NSGradient *gradient = [[NSGradient alloc] initWithColors:
[NSArray arrayWithObjects:
[NSColor redColor],
[NSColor greenColor],
nil
]
];
[theView lockFocus];
[gradient drawFromPoint: NSMakePoint(100,100)
toPoint: NSMakePoint(0,50)
options: NSGradientDrawsBeforeStartingLocation
];
// NSGradientDrawsBeforeStartingLocation = (1 << 0),
// NSGradientDrawsAfterEndingLocation = (1 << 1),
[theView unlockFocus];
}
@end
![]() | |
この記事を評価してください。
| Home 目次>ApplicationKit>NSGradient | 修正日2006.12.26 |