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