macOS/iOS API解説

iOS , Mac アプリケーション開発のために使われる主要フレームワークの日本語情報です。2010年代に書かれた内容です。今後更新はありません。

目次

maximumLineHeight

最大の行高を返します

解説

最大の行高を返します。初期設置値は0。0の場合は制限はありません。

返り値

( float )

最大の行高

引数

フレームワーク

ApplicationKit

クラス

NSParagraphStyle

Instance Methods

使用可能

10.0

参照

- minimumLineHeight
- lineSpacing
- setMaximumLineHeight:(NSMutableParagraphStyle)

例文

#import "MyObject.h"

@implementation MyObject

- (IBAction)myAction:(id)sender
{

NSTextTab *tabStop = [[NSTextTab alloc] initWithType:NSLeftTabStopType
                                        location:144];
NSMutableParagraphStyle *pStyle = [NSMutableParagraphStyle defaultParagraphStyle];

[myOutlet setUsesRuler:YES];
[myOutlet setRulerVisible:YES];
    
NSLog([NSString stringWithFormat:@"%.1f",[pStyle maximumLineHeight]]);

}

@end