widthOfColumn:
指定したコラムの幅を返します
-(float)widthOfColumn:(int)column:
解説
指定したコラムの幅を返します。
返り値
( float )
なし
引数
( int )column
フレームワーク
ApplicationKit
クラス
NSBrowser
Instance Methods
使用可能
10.3
参照
-setWidth:ofColumn:
例文
- (IBAction)myAction:(id)sender { [myOutlet setWidth:100.0 ofColumn:2]; NSLog([NSString stringWithFormat:@"%f",[myOutlet widthOfColumn:2]]); }