テキスト配置をセットします
-(void)setAlignment:(NSTextAlignment)mode:
解説
テキストの配置をセットします。
【NSTextAlignment】
● NSLeftTextAlignment 左揃え
● NSRightTextAlignment 右揃え
● NSCenterTextAlignment センター揃え
● NSJustifiedTextAlignment ジャスティファイ
● NSNaturalTextAlignment 自動(初期設定)
NSNaturalTextAlignmentは文字の言語の自然な配置として、他の配置のうちの1つを使って表示されます。
返り値
( void )
なし
引数
( NSTextAlignment )mode
テキスト配置
フレームワーク
ApplicationKit
クラス
NSText
Instance Methods
使用可能
10.0
参照
- alignment
- alignLeft:
- alignCenter:
- alignRight:
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { [myOutlet setString:@"abcdefghijklmn"]; [myOutlet setAlignment:NSRightTextAlignment]; } @end