macOS/iOS API解説

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

目次

scrollColumnsLeftBy:

指定したコラム分左にスクロールします
-(void)scrollColumnsLeftBy:(int)shiftAmount:

解説

指定したコラム分左にスクロールします。

返り値

( void )

なし

引数

( int )shiftAmount

フレームワーク

ApplicationKit

クラス

NSBrowser

Instance Methods

使用可能

10.0

参照

例文

#import "butAction.h"

@implementation butAction

- (IBAction)myAction:(id)sender
{
[myOutlet scrollColumnsLeftBy:3];
 }

@end