| Home 目次>ApplicationKit>NSFontPanel | |
isEnabled
フォントパネルが使用可能かを返します
-(BOOL) isEnabled
【返り値】 | |
| BOOL | YES/NO |
【解説】
フォントパネルが使用可能かを返します。
【例文】
#import "Controller.h"
@implementation Controller
- (IBAction)pushButton:(id)sender
{
NSFontPanel *fPanel = [NSFontPanel sharedFontPanel];
[[NSFontManager sharedFontManager] orderFrontFontPanel:fPanel];
[fPanel setEnabled:NO];
if ([fPanel isEnabled]){
NSLog(@"YES");
}else{
NSLog(@"NO");
}
}
@end
![]() | |
この記事を評価してください。
| Home 目次>ApplicationKit>NSFontPanel | 修正日2006.12.26 |