macOS/iOS API解説

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

目次

minColumnWidth

コラム幅の最小値を返します(pixel)

解説

コラム幅の最小値を返します(pixel)。

返り値

( float )

コラム幅の最小値

引数

フレームワーク

ApplicationKit

クラス

NSBrowser

Instance Methods

使用可能

10.0

参照

- setMinColumnWidth:

例文

#import "MyObject.h"

@implementation MyObject

- (IBAction)myAction:(id)sender
{
NSLog([NSString stringWithFormat:@"%.1f",[myOutlet minColumnWidth]]);
}

@end