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