| Home 目次>ApplicationKit>NSFormCell | |
titleAlignment
タイトルの配置を返します
-(NSTextAlignment) titleAlignment
【返り値】 | |
| NSTextAlignment | 配置 |
【解説】
タイトルの配置を返します。
● NSLeftTextAlignment 左揃え
● NSRightTextAlignment 右揃え(初期設定)
● NSCenterTextAlignment センター揃え
【例文】
#import "MyObject.h"
@implementation MyObject
- (IBAction)myAction:(id)sender
{
if ([form1 titleAlignment] == NSLeftTextAlignment){
NSLog(@"NSLeftTextAlignment");
}else{
NSLog(@"other");
}
}
@end
![]() | |
この記事を評価してください。
| Home 目次>ApplicationKit>NSFormCell | 修正日2006.12.26 |