NSFormCell:titleAlignment
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


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

Google
Webwww.oomori.com
Apple_Store_40x120

[ad:Usual day in Japan]

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

良い 

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

Home 目次>ApplicationKit>NSFormCell
修正日2006.12.26