macOS/iOS API解説

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

目次

leftMargin

左のマージンの幅を返します(Pointで)

解説

左のマージンの幅を返します。(Pointで)

返り値

( float )

左のマージンの幅

引数

フレームワーク

ApplicationKit

クラス

NSPrintInfo

Instance Methods

使用可能

10.0

参照

- setLeftMargin:

例文

#import "MyObject.h"

@implementation MyObject

- (IBAction)myAction:(id)sender
{
NSPrintInfo *pInfo = [NSPrintInfo sharedPrintInfo] ;
NSPageLayout *pageLayout = [NSPageLayout pageLayout];

[pageLayout beginSheetWithPrintInfo:pInfo
            modalForWindow:[sender window] 
            delegate:self 
            didEndSelector:@selector(didEndPageLayout) 
            contextInfo:nil ];
            
            NSLog([NSString stringWithFormat:@"%.1f",[pInfo leftMargin]]);
}
-(void)didEndPageLayout
{
NSLog(@"close");
}

@end