コントロールの文字揃えをセットします
-(void)setAlignment:(NSTextAlignment)mode:
解説
コントロールの文字揃えをセットします。
編集中なら、編集を中止します。
返り値
( void )
なし
引数
( NSTextAlignment )mode
文字揃え
● NSLeftTextAlignment (左揃え)
● NSRightTextAlignment (右揃え)
● NSCenterTextAlignment (センター揃え)
● NSJustifiedTextAlignment (ジャスティファイ)
● NSNaturalTextAlignment(デフォルト)
フレームワーク
ApplicationKit
クラス
NSControl
Instance Methods
使用可能
10.0
参照
-alignment
例文
[sender setTitle:@"text"];//senderはボタン [sender setAlignment:NSLeftTextAlignment]; [myOutlet setAlignment:[sender alignment]];//senderは別のボタン